/* Country Dropdown Styling for Signup Page - Using Select2 */

/* Remove any previous custom search input styles */
.country-search-input {
    display: none !important;
}

/* Country Select Dropdown - Base styling to match other inputs */
.country-select {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    background: transparent;
}

/* Select2 Container - Match the form input style */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 58px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 58px;
    padding-left: 20px;
    padding-right: 40px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
    font-family: 'Gordita', sans-serif;
    font-weight: normal;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px;
    right: 0;
    top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(0, 0, 0, 0.4) transparent transparent transparent;
    border-width: 6px 5px 0 5px;
    margin-left: -5px;
    margin-top: -3px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent rgba(0, 0, 0, 0.4) transparent;
    border-width: 0 5px 6px 5px;
}

/* Focus state */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #8A42FF;
    outline: none;
}

/* Dropdown styling */
.select2-dropdown {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    background: #fff;
}

/* Search field in dropdown */
.select2-container--default .select2-search--dropdown {
    padding: 12px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Gordita', sans-serif;
    outline: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #8A42FF;
    box-shadow: 0 0 0 2px rgba(138, 66, 255, 0.1);
}

/* Results options */
.select2-container--default .select2-results__option {
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Gordita', sans-serif;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #8A42FF;
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(138, 66, 255, 0.1);
    color: #000;
    font-weight: 500;
}

.select2-container--default .select2-results__option[aria-selected=true]:hover {
    background-color: #8A42FF;
    color: #fff;
}

/* Results list */
.select2-results__options {
    max-height: 300px;
}

/* No results message */
.select2-container--default .select2-results__option--no-results {
    padding: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}

/* Loading state */
.select2-container--default .select2-results__option--loading {
    padding: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

/* Disabled state */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Country code styling in options */
.select2-results__option span[style*="color"] {
    font-size: 14px;
    margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: 50px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 50px;
        font-size: 16px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 50px;
    }
    
    .select2-container--default .select2-results__option {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* Animation for dropdown */
.select2-dropdown {
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clear button (if allowClear is true) */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #ef4444;
}

/* Validation states to match other inputs */
.select2-container.is-valid .select2-selection--single {
    border-color: #10b981;
}

.select2-container.is-invalid .select2-selection--single {
    border-color: #ef4444;
}
