           * {
             font-family: 'Wix Madefor Text', sans-serif;
         }
         .hotel-search-form span,
         .hotel-search-form input {
             font-size: 15px !important;
         }
         
         
        .hotel-search-container {
            max-width: 1200px;
            margin: 0 auto;
            font-family: Arial, sans-serif;
        }
        


        .hotel-search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            background-color: #ffffff;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
      
        #start_date,
        #end_date,
        #destination {
         height: 40px;
         border: 1px solid #ddd;
         border-radius: 4px;
        }

        
        .search-field {
            position: relative;
            flex: 1;
            min-width: 150px;
        }
        
        .search-field input,
        .search-field select {
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
        }
        
        .search-field input:focus,
        .search-field select:focus {
            border-color: #2271b1;
        }
        
        .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            pointer-events: none;
        }
        
        button#search-button {
            background-color: #183ad6;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            width: 100%;
        }
        
        button#search-button:hover {
            background-color: #30baed;
        }
        
        .search-results {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .hotel-card {
            flex: 1;
            min-width: 300px;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 15px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .hotel-card h3 {
            margin-top: 0;
            color: #2271b1;
        }
        
        .hotel-card .rating {
            color: #d7a50e;
            margin-bottom: 10px;
        }
        
        .hotel-card .price {
            font-size: 18px;
            font-weight: bold;
            color: #2271b1;
            margin-top: 10px;
        }
        
        .hotel-card .book-now {
            background-color: #2271b1;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
            font-weight: bold;
        }
        
        .hotel-card .book-now:hover {
            background-color: #135e96;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .search-field {
                flex-basis: 100%;
            }
        }
        
        #room_travelers:hover,
        #end_date:hover,
        #start_date:hover,
        #destination:hover,
        #nationality:hover,
        #traveler-selector:hover {
         border: 1px solid black;
         
        }
        .traveler-selector:hover{
            border: 1px solid black !important;
        }
        #room_travelers,
        #end_date,
        #start_date,
        #destination,
        #nationality,
        #traveler-selector  {
        transition: border 0.3s ease;
        }

        
        .datepicker-controls > * {
            background-color: transparent !important;
            color: rgb(0, 0, 0) !important;
        }
        .datepicker-view {
            margin-left: 10px !important;
        }
        
        .datepicker-controls button:nth-child(2) {
            padding: 0 !important;
        }
        

 /* Add these styles to your existing style.css file */

/* Autocomplete destination search field styles */
.search-field input:focus {
    border-color: #4a90e2;
    box-shadow: 0 2px 10px rgba(74,144,226,0.2);
    outline: none;
}

.search-icon {
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
}

.autocomplete-results {
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: white;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: #f8f8f8;
}

.autocomplete-item.highlighted {
    background-color: #f0f7ff;
}

.autocomplete-item .city {
    font-weight: 600;
    color: #333;
}

.autocomplete-item .state {
    color: #666;
    font-size: 0.9em;
}

/* Scrollbar styling */
.autocomplete-results::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 8px 0;
}

.autocomplete-results::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.autocomplete-results::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
 
.traveler-selector {
    position: relative;
    position: relative;
    padding: 7px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
   
}

.traveler-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.traveler-summary {
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
}

.traveler-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 300px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border: 1px solid #ddd;
}

.room-block {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.room-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.delete-room {
    color:rgb(51, 11, 251);
    cursor: pointer;
    text-decoration: none;
}

.traveler-count-row {
    margin-bottom: 10px;
}

.traveler-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap:10px important!;
}

.counter-btn {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.counter-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
}

.child-ages {
    margin-top: 10px;
    margin-left: 20px;
}

.child-age-select {
    padding: 5px;
    width: 100%;
}

.room-actions {
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.add-room-btn {
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    cursor: pointer;
}

.apply-btn {
    padding: 8px 25px;
    background-color:rgb(34, 20, 231);
    border: none;
    color: white;
    cursor: pointer;
}