* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #1e3c72 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

header {
    text-align: center;
}

.search-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-bar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

fieldset.trip-type {
    border: none;
    margin: 0;
    padding: 0;
}

button span {
    display: inline-block;
}

.dropdown-item[role="option"]:hover,
.dropdown-item[role="option"]:focus {
    background-color: #f8f9fa;
    transform: translateX(4px);
    outline: none;
}

.calendar-day[role="gridcell"]:hover,
.calendar-day[role="gridcell"]:focus {
    background-color: #e8f4fd;
    color: #4a90e2;
    outline: none;
}

.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0;
    justify-content: flex-start;
    width: 100%;
    border: none;
}

.trip-type legend {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.trip-type input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #4a90e2;
}

.search-bar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

/* Search form button styles replaced with BEM button classes */
.search-bar input:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

.input-group {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 200px;
    flex: 1;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}



.input-icon-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e1e5e9;
    border-radius: 0;
    transition: all 0.3s ease;
}

.input-icon-group:hover {
    border-bottom-color: #ccc;
}

.input-icon-group:focus-within {
    border-bottom-color: #4a90e2;
    box-shadow: none;
}

.input-icon-group img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
    padding: 4px 0;
}

/* Button styles moved to buttons.css - using BEM methodology */
.search-form__button-container {
    display: flex;
    align-items: flex-end;
}

.dropdown-menu {
    display: none;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    max-height: 560px;
    overflow-y: auto;
    background: white;
    position: absolute;
    width: 100%;
    min-width: 320px;
    top: 100%;
    left: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dropdown-menu::-webkit-scrollbar {
    display: none;
}

.dropdown-title {
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    font-weight: 600;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f3f4;
    min-height: 72px;
}

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

.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(4px);
}

.dropdown-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    flex-shrink: 0;
}

.dropdown-item .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.dropdown-item .city {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1.2;
}

.dropdown-item .country {
    color: #666;
    font-size: 14px;
    line-height: 1.2;
}

.dropdown-item .code {
    background: #e8f4fd;
    color: #4a90e2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 2px;
}

.dropdown-item.no-results {
    justify-content: center;
    color: #666;
    font-style: italic;
    cursor: default;
    background-color: #f8f9fa;
}

.dropdown-item.no-results:hover {
    background-color: #f8f9fa;
    transform: none;
}

.description {
    text-align: center;
    margin-top: 30px;
}

.description p {
    color: white;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 2px;
    opacity: 0;
    visibility: hidden;
    font-weight: 500;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.error-message.show {
    opacity: 1;
    visibility: visible;
}

.calendar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 4px;
    min-width: 580px;
    padding: 16px;
}

.calendar.show {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-months-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex: 1;
}

/* Calendar navigation button styles moved to buttons.css as .calendar-button */

.calendar-month-year {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.calendar-content {
    display: flex;
    gap: 20px;
}

.calendar-month {
    flex: 1;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays>div {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 4px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    text-align: center;
    padding: 8px 4px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background-color: #e8f4fd;
    color: #4a90e2;
}

.calendar-day.selected {
    background-color: #4a90e2;
    color: white;
}

.calendar-day.other-month {
    color: #ccc;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.disabled:hover {
    background-color: transparent;
    color: #ccc;
}

.calendar-day.range-start,
.calendar-day.range-end {
    background-color: #4a90e2;
    color: white;
}

.calendar-day.in-range {
    background-color: #e8f4fd;
    color: #4a90e2;
}

.passenger-selector {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 4px;
    min-width: 300px;
    padding: 20px;
}

.passenger-selector.show {
    display: block;
}

.passenger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e5e9;
}

.passenger-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Close button styles moved to buttons.css as .close-button */

.passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
}

.passenger-type:last-of-type {
    border-bottom: none;
}

.passenger-info {
    flex: 1;
}

.passenger-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Counter button styles moved to buttons.css as .counter-button */

.counter-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}

.children-ages {
    margin-top: 15px;
}

.child-age-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

.child-age-row:last-child {
    border-bottom: none;
}

.child-age-label {
    font-size: 14px;
    color: #666;
}

.age-select {
    padding: 6px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.age-select:focus {
    outline: none;
    border-color: #4a90e2;
}

.passenger-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e1e5e9;
}

/* Apply button styles moved to buttons.css as .button--primary */

.passengers-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    min-width: 350px;
}

.passengers-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.passengers-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: #f5f5f5;
    color: #666;
}

.passengers-popup-content {
    padding: 20px;
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.passenger-info {
    display: flex;
    flex-direction: column;
}

.passenger-type {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.passenger-desc {
    font-size: 12px;
    color: #999;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.passenger-btn {
    width: 50px;
    border: 2px solid #e1e5e9;
    background: white;
    color: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.passenger-btn:hover {
    background-color: #4a90e2;
    border-color: #4a90e2;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.passenger-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.passenger-btn:disabled:hover {
    background-color: white;
    border-color: #e1e5e9;
    color: #999;
    transform: none;
    box-shadow: none;
}

.passenger-count {
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}

.children-ages {
    margin-top: 15px;
}

.child-age-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.child-age-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.child-age-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.child-age-select,
.age-select {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #333;
    cursor: pointer;
    font-weight: 500;
    min-width: 160px;
}

.child-age-select:focus,
.age-select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.passenger-warning {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.passenger-warning span {
    font-size: 18px;
    font-weight: 700;
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.passenger-warning p {
    font-size: 16px;
    color: #856404;
    margin: 0;
    line-height: 1.4;
}

.passengers-popup-footer {
    margin-top: auto;
    padding: 20px 0 0;
}

.apply-btn {
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

/* Duplicate apply button styles removed - using BEM classes from buttons.css */

@media (max-width: 768px) {

    .search-bar {
        flex-direction: column;
        padding: 20px;
        margin: 0 10px;
    }

    .trip-type {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .input-group {
        min-width: 100%;
    }

    button {
        width: 100%;
        padding: 15px;
    }

    .dropdown-menu {
        min-width: 100%;
    }

    /* Mobile Calendar - Full screen from bottom */
    .calendar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        background: white;
        border: none;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        margin: 0;
        min-width: 100%;
        padding: 20px;
        max-height: 70vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    .calendar.show {
        display: block;
        transform: translateY(0);
    }

    .calendar-header {
        margin-bottom: 16px;
        border-bottom: 1px solid #e1e5e9;
        padding-bottom: 12px;
    }

    .calendar-months-container {
        gap: 0;
        flex: 1;
        margin: 0;
        justify-content: center;
    }

    .calendar-month-year:last-child {
        display: none;
        /* Hide second month display on mobile */
    }

    .calendar-nav {
        font-size: 14px;
        padding: 6px 8px;
        min-width: 32px;
    }

    .calendar-month-year {
        font-size: 18px;
        font-weight: 600;
        flex: 1;
        margin: 0 12px;
    }

    /* Single month layout for mobile */
    .calendar-content {
        flex-direction: column;
        gap: 0;
        overflow: visible;
    }

    .calendar-month {
        min-width: 100%;
        flex-shrink: 1;
    }

    .calendar-month:last-child {
        display: none;
        /* Hide second month on mobile */
    }

    .calendar-weekdays>div {
        font-size: 12px;
        padding: 8px 4px;
        font-weight: 600;
    }

    .calendar-days {
        gap: 2px;
        height: 240px;
        /* Fixed height for 6 weeks */
        overflow: hidden;
    }

    .calendar-day {
        padding: 12px 4px;
        font-size: 14px;
        min-height: 40px;
        border-radius: 6px;
    }

    .passenger-selector,
    .passengers-popup {
        min-width: 100%;
        left: 0;
        right: 0;
    }

    /* Full-screen passenger selector for mobile */
    .passengers-popup {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: auto !important;
        max-height: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
        z-index: 9999 !important;
        overflow-y: auto;
        background: #f8f9fa !important;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
    }

    .passengers-popup.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .passengers-popup-header {
        background: white;
        border-bottom: 2px solid #e1e5e9;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 3;
    }

    .passengers-popup-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .close-btn {
        width: 44px;
        height: 44px;
        font-size: 28px;
        border: 2px solid #e1e5e9;
        border-radius: 50%;
        background: white;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
    }

    .close-btn:hover {
        background-color: #f5f5f5;
        border-color: #ccc;
        transform: scale(1.05);
    }

    .passengers-popup-content {
        padding: 30px 0px;
        background: #f8f9fa;
        min-height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    .passenger-row {
        background: white;
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid #e1e5e9;
    }

    .passenger-info {
        margin-bottom: 20px;
    }

    .passenger-type {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 6px;
    }

    .passenger-desc {
        font-size: 16px;
        color: #666;
        font-weight: 400;
    }

    .passenger-controls {
        justify-content: center;
        gap: 24px;
    }

    .passenger-btn {
        width: 56px !important;
        height: 56px !important;
        font-size: 24px !important;
        font-weight: 700;
        border: 3px solid #e1e5e9 !important;
        border-radius: 50% !important;
        background: white !important;
        color: #4a90e2 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease;
    }

    .passenger-btn:hover:not(:disabled) {
        background-color: #4a90e2 !important;
        border-color: #4a90e2 !important;
        color: white !important;
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3) !important;
    }

    .passenger-btn:disabled {
        opacity: 0.4 !important;
        transform: none !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    }

    .passenger-btn:disabled:hover {
        background-color: white;
        border-color: #e1e5e9;
        color: #999;
        transform: none;
        box-shadow: none;
    }

    .passenger-count {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #333 !important;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .children-ages {
        margin-top: 20px;
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid #e1e5e9;
    }

    .child-age-row {
        padding: 16px 0;
        border-bottom: 1px solid #f1f3f4;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .child-age-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .child-age-label {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .child-age-select,
    .age-select {
        padding: 12px 16px;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        font-size: 16px;
        background: white;
        color: #333;
        cursor: pointer;
        font-weight: 500;
        min-width: 160px;
    }

    .child-age-select:focus,
    .age-select:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    }

    .passenger-warning {
        background: #fff3cd;
        border: 2px solid #ffeaa7;
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
        text-align: center;
    }

    .passenger-warning span {
        font-size: 18px;
        font-weight: 700;
        color: #856404;
        display: block;
        margin-bottom: 8px;
    }

    .passenger-warning p {
        font-size: 16px;
        color: #856404;
        margin: 0;
        line-height: 1.4;
    }

    .passengers-popup-footer {
        margin-top: auto;
        padding: 20px 0 0;
    }

    .apply-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 12px;
        background: linear-gradient(135deg, #4a90e2, #357abd);
        color: white;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
        transition: all 0.3s ease;
    }

    .apply-btn:hover {
        background: linear-gradient(135deg, #357abd, #2a5298);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    }

    .apply-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }

    /* Mobile-specific viewport adjustments */
    html, body {
        height: 100%;
        overflow-x: hidden;
    }

    body.popup-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .search-bar {
        padding: 15px;
    }

    .dropdown-item {
        padding: 12px 15px;
        min-height: 60px;
    }

    .dropdown-item img {
        width: 40px;
        height: 40px;
    }

    /* Mobile Calendar - Enhanced for smaller screens */
    .calendar {
        padding: 16px;
        max-height: 75vh;
    }

    .calendar-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .calendar-nav {
        font-size: 12px;
        padding: 4px 6px;
        min-width: 28px;
    }

    .calendar-month-year {
        font-size: 16px;
        flex: 1;
        margin: 0 8px;
    }

    .calendar-month-year:last-child {
        display: none;
        /* Hide second month display on smaller mobile */
    }

    .calendar-weekdays>div {
        font-size: 11px;
        padding: 6px 2px;
    }

    .calendar-day {
        padding: 10px 2px;
        font-size: 13px;
        min-height: 36px;
    }

    .calendar-days {
        height: 216px;
        /* Fixed height for 6 weeks on smaller screens */
        overflow: hidden;
    }

    .passengers-popup {
        padding: 15px;
    }
}

.dropdown-item:focus,
.calendar-day:focus,
.passenger-btn:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    background-color: #e8f4fd;
}

@media (prefers-contrast: high) {
    .search-bar {
        border: 2px solid #000;
    }

    .dropdown-menu,
    .calendar,
    .passengers-popup {
        border: 2px solid #000;
    }

    button {
        border: 2px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}