.yacht-search-form {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 30px;
    border-radius: 8px;
}

.yacht-search-form-inner {
    display: grid;
    grid-template-columns: 2fr 220px 285px auto;
    gap: 20px;
    align-items: end;
}

.yacht-search-field {
    display: flex;
    flex-direction: column;
}

.yacht-search-field label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.yacht-search-field select,
.yacht-search-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
}

.yacht-search-field input:focus,
.yacht-search-field select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.yacht-search-submit button {
    padding: 12px 40px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 48px;
    white-space: nowrap;
}

.yacht-search-submit button:hover {
    background: #005a87;
}

/* Select2 Customization */
.select2-container--open .select2-dropdown--below{
    margin-top: 32px;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 48px;
    padding: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0073aa;
    border-color: #0073aa;
    color: #fff;
    padding: 4px 8px;
    margin: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    margin-right: 5px;
    position: relative;
    float: right;
    border: 0;
    margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
}

.select2-container--default .select2-search--inline .select2-search__field{
    height: 33px;
}

/* Modern Select2 styling */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    min-height: 44px;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3498db;
    border: none;
    border-radius: 6px;
    padding: 4px 6px;
    color: white;
    font-size: 13px;
    margin: 4px 3px 4px 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #e74c3c;
    background: none !important;
}

/* Larger, modern dropdown */
.select2-dropdown {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yacht-search-destination-dropdown .select2-dropdown {
    min-width: 400px !important;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 450px;
    font-size: 15px;
}

/* Modern optgroup styling */
.select2-container--default .select2-results__group {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 12px;
    font-weight: 600;
    font-size: 13px;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
    margin-top: 4px;
}

.select2-container--default .select2-results__option {
    padding: 10px 16px;
    transition: background-color 0.2s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3498db;
    color: white;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
}

/* Hide disabled options completely */
.select2-results__option[aria-disabled=true] {
    display: none !important;
}

/* Search box styling */
.select2-search--dropdown .select2-search__field {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Placeholder styling */
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #95a5a6;
    font-size: 14px;
}

/* Daterangepicker Customization */
.daterangepicker {
    font-family: inherit;
}

.daterangepicker .calendar-table th{
    border: 0 !important;
}

.daterangepicker table td, .daterangepicker table th {
    padding: 0px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #0073aa;
}

.daterangepicker .ranges li.active {
    background-color: #0073aa;
}

.yacht-search-form .usp-hero{
    display: flex;
    margin-top: 10px;
}

.yacht-search-form .box__usp-hero{
    background-color: rgba(4, 114, 171, 0.6);
}

@media (max-width: 768px) {
    .yacht-search-form-inner {
        grid-template-columns: 1fr;
    }
    
    .yacht-search-submit button {
        width: 100%;
    }

    .yacht-search-form .usp-hero{
        margin-top: 20px;
    }
}