/* Vehicle Search Block Styles  eeeeee*/
.vehicle-search-header {
    text-align: center;
    margin-bottom: 20px;
}

.vehicle-search-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Select2 Dropdown Styles */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 48px !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
    padding: 0 !important;
    line-height: 32px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

 

.select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.select2-container--default .select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #007bff !important;
    color: white !important;
}

/* Search Button Styles */
.vehicle-search .btn {
    height: 48px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    border: none !important;
    background-color: #007bff !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.vehicle-search .btn:hover {
    background-color: #0056b3 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0,123,255,0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vehicle-search-header h2 {
        font-size: 20px;
    }
    
    .select2-container--default .select2-selection--single,
    .vehicle-search .btn {
        height: 44px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        display: none !important;
    }
}

/* Focus states */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}

/* Placeholder styles */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
}

/* Loading state */
.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #6c757d !important;
    background-color: #f8f9fa !important;
}

/* Remove dropdown arrows from all select elements in vehicle search */
.vehicle-search select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
}

/* Remove bootstrap-select dropdown arrow */
.vehicle-search .bootstrap-select .dropdown-toggle .caret {
    display: none !important;
}

/* Remove any custom dropdown arrows */
.vehicle-search .form-control::after,
.vehicle-search .form-control::before {
    display: none !important;
}

/* Advanced search link */
.vehicle-search .advanced-search-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.vehicle-search .advanced-search-link:hover {
    text-decoration: underline;
    color: #0056b3;
}