.smart-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.smart-select-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.smart-select-address,
.smart-select-postal-code {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.smart-select-dropdown {
    position: fixed;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    z-index: 99999;
    display: none;
}
.smart-select-option {
    padding: 8px;
    cursor: pointer;
}
.smart-select-option:hover {
    background: #f0f0f0;
}
.smart-select-option.active {
    background: #e8f4ff;
}
.smart-select-option.no-options {
    color: #999;
    cursor: default;
}
.smart-select-option.add-new {
    color: #0073aa;
    font-weight: bold;
}
.smart-select-divider {
    padding: 0;
    margin: 5px 0;
}
.smart-select-label {
    padding: 8px;
    font-weight: bold;
    color: #666;
}
.smart-select-loading {
    padding: 8px;
    color: #999;
}
.smart-select-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    z-index: 1001;
}
.smart-select-notification.success {
    background: #46b450;
}
.smart-select-notification.error {
    background: #dc3232;
}

/* Removed location wizard CSS rules as per user request */