﻿/* Ana Arama Konteyneri */
.bredcump-search {
    z-index: 9;
}

.search-container {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    padding-bottom: 60px; /* Buton için yer aç */
}

/* Tek Yön / Gidiş-Dönüş */
.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.radio-group {
    display: flex;
    align-items: center;
}

    .radio-group input[type="radio"],
    .radio-group input[type="checkbox"] {
        display: none; /* Orijinal radio/checkbox'ı gizle */
    }

    .radio-group label {
        cursor: pointer;
        font-size: 16px;
        color: #555;
        position: relative;
        padding-left: 28px;
    }

    /* Custom Radio Button Circle */
    .radio-group input[type="radio"] + label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    .radio-group input[type="radio"]:checked + label {
        font-weight: 500;
        color: #007bff;
    }

        .radio-group input[type="radio"]:checked + label::before {
            border-color: #007bff;
            background-color: #007bff;
            box-shadow: inset 0 0 0 3px white;
        }

    /* Custom Checkbox */
    .radio-group input[type="checkbox"] + label::before {
        content: '\f00c'; /* Font Awesome check icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: transparent; /* Başlangıçta ikonu gizle */
        transition: all 0.2s ease;
    }

    .radio-group input[type="checkbox"]:checked + label::before {
        background-color: #007bff;
        border-color: #007bff;
        color: white; /* Seçilince ikonu göster */
    }

/* Arama Alanları Flex Konteyneri */
.form-fields {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* Her bir arama grubu */
.form-group {
    flex: 1;
    padding: 12px 16px;
    position: relative;
    min-width: 150px;
    cursor: text;
}

    .form-group:not(:last-child) {
        border-right: 1px solid #e0e0e0;
    }

    .form-group label {
        display: block;
        font-size: 14px;
        color: #888;
        margin-bottom: 4px;
        cursor: text;
    }

        .form-group label i {
            font-size: 12px;
            margin-left: 4px;
        }

/* Input Alanları */
.field-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    font-size: 24px;
    font-weight: 500;
    color: #111;
}

.traveller-group .field-input {
    font-size: 20px;
}

.traveller-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

    .traveller-display:hover {
        border-color: #007bff;
    }

.traveller-number {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    line-height: 1;
}

.traveller-text {
    font-size: 16px;
    font-weight: 400;
    color: #111;
    line-height: 1;
}

/* Traveller Popover Styles */
.traveller-popover,
.custom-traveller-popover {
    padding: 20px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    min-width: 320px !important;
    border: 1px solid #e9ecef !important;
}

.passenger-section {
    margin-bottom: 1rem;
}

    .passenger-section.inline {
        display: flex;
        gap: 20px;
        margin-bottom: 1rem;
    }

        .passenger-section.inline .passenger-label {
            margin-bottom: 0;
            min-width: 120px;
        }

        .passenger-section.inline .number-pills {
            flex: 1;
        }

.passenger-label {
    margin-bottom: 1rem;
}

.label-text {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: normal;
}

.label-subtext {
    display: block;
    font-size: 10px;
    color: #666;
}

.number-pills {
    display: inline-flex;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
    align-items: center;
}

.number-pill {
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    width: 36px;
    height: 32px;
    position: relative;
    z-index: 2;
}

    .number-pill:hover {
        background: #e9ecef;
        color: #333;
    }

    .number-pill.selected {
        color: #fff;
        font-weight: var(--font-bolder, 900);
    }

        .number-pill.selected.selected:after {
            width: 100%;
            height: 38px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            content: "";
            background: #008cff;
            border-radius: 4px;
            box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
            z-index: -1;
        }

.class-section {
    margin-bottom: 24px;
}

.class-label {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.class-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.class-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

    .class-btn:hover {
        background: #e9ecef;
        color: #333;
    }

    .class-btn.selected {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }

.new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    display: none;
}

.apply-section {
    display: flex;
    justify-content: flex-end;
}

.apply-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .apply-btn:hover {
        background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
        transform: translateY(-1px);
    }

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1440px ve üzeri) */
@media (min-width: 1440px) {
    .search-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 32px;
    }

    .trip-type {
        gap: 24px;
        margin-bottom: 24px;
    }

    .radio-group label {
        font-size: 18px;
    }

    .form-group label {
        font-size: 16px;
    }

    .field-input {
        font-size: 18px;
        padding: 16px 20px;
    }

    .date-display {
        padding: 16px 20px;
    }

    .date-number {
        font-size: 28px;
    }

    .date-month-year {
        font-size: 16px;
    }

    .date-day-name {
        font-size: 14px;
    }

    .calendar-dropdown {
        width: 700px;
    }

    .custom-traveller-popover {
        min-width: 500px !important;
        padding: 24px !important;
    }

    .label-text {
        font-size: 16px;
    }

    .label-subtext {
        font-size: 14px;
    }

    .number-pill {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .class-btn {
        padding: 16px 20px;
        font-size: 16px;
    }

    .apply-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .search-button {
        padding: 18px 32px;
        font-size: 18px;
    }

    .traveller-number {
        font-size: 28px;
    }

    .traveller-text {
        font-size: 18px;
    }
}

/* Desktop (1366px - 1439px) */
@media (min-width: 1366px) and (max-width: 1439px) {
    .search-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 28px;
    }

    .trip-type {
        gap: 22px;
        margin-bottom: 22px;
    }

    .radio-group label {
        font-size: 17px;
    }

    .form-group label {
        font-size: 15px;
    }

    .field-input {
        font-size: 17px;
        padding: 15px 18px;
    }

    .date-display {
        padding: 15px 18px;
    }

    .date-number {
        font-size: 26px;
    }

    .date-month-year {
        font-size: 15px;
    }

    .date-day-name {
        font-size: 13px;
    }

    .calendar-dropdown {
        width: 650px;
    }

    .custom-traveller-popover {
        min-width: 480px !important;
        padding: 22px !important;
    }

    .label-text {
        font-size: 15px;
    }

    .label-subtext {
        font-size: 13px;
    }

    .number-pill {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .class-btn {
        padding: 14px 18px;
        font-size: 15px;
    }

    .apply-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .search-button {
        padding: 16px 28px;
        font-size: 17px;
    }

    .traveller-number {
        font-size: 26px;
    }

    .traveller-text {
        font-size: 17px;
    }
}

/* Medium Desktop (1024px - 1365px) */
@media (min-width: 1024px) and (max-width: 1365px) {
    .search-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 24px;
    }

    .trip-type {
        gap: 20px;
        margin-bottom: 20px;
    }

    .radio-group label {
        font-size: 16px;
    }

    .form-group label {
        font-size: 14px;
    }

    .field-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .date-display {
        padding: 14px 16px;
    }

    .date-number {
        font-size: 24px;
    }

    .date-month-year {
        font-size: 14px;
    }

    .date-day-name {
        font-size: 12px;
    }

    .calendar-dropdown {
        width: 600px;
    }

    .custom-traveller-popover {
        min-width: 450px !important;
        padding: 20px !important;
    }

    .label-text {
        font-size: 14px;
    }

    .label-subtext {
        font-size: 12px;
    }

    .number-pill {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .class-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .apply-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .search-button {
        padding: 14px 24px;
        font-size: 16px;
    }

    .traveller-number {
        font-size: 24px;
    }

    .traveller-text {
        font-size: 16px;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .search-container {
        padding: 16px;
        margin: 10px;
    }

    .trip-type {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .form-fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group {
        width: 100%;
    }

    .date-display {
        padding: 12px 16px;
    }

    .date-number {
        font-size: 20px;
    }

    .date-month-year {
        font-size: 12px;
    }

    .date-day-name {
        font-size: 11px;
    }

    .calendar-dropdown {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
    }

    .dual-calendar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calendar-grid {
        width: 100%;
    }

    .custom-traveller-popover {
        min-width: 320px !important;
        left: 10px !important;
        right: 10px !important;
        width: calc(100vw - 20px) !important;
        max-width: none !important;
    }

    .passenger-section.inline {
        flex-direction: column;
        gap: 16px;
    }

        .passenger-section.inline .passenger-label {
            min-width: auto;
        }

    .number-pills {
        gap: 6px;
    }

    .number-pill {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .class-buttons {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }

    .class-btn {
        width: fit-content;
        text-align: center;
    }

    .search-button {
        width: 100%;
        margin-top: 20px;
    }

    .trending-searches {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    .search-container {
        padding: 12px;
        margin: 5px;
        border-radius: 12px;
    }

    .trip-type {
        gap: 8px;
    }

    .radio-group label {
        font-size: 14px;
        padding-left: 24px;
    }

    .radio-group input[type="radio"] + label::before {
        width: 16px;
        height: 16px;
    }

    .radio-group input[type="radio"]:checked + label::after {
        width: 8px;
        height: 8px;
    }

    .form-group label {
        font-size: 12px;
    }

    .field-input {
        font-size: 14px;
        padding: 10px 12px;
    }

    .date-display {
        padding: 10px 12px;
    }

    .date-number {
        font-size: 18px;
    }

    .date-month-year {
        font-size: 11px;
    }

    .date-day-name {
        font-size: 10px;
    }

    .custom-traveller-popover {
        padding: 16px !important;
        min-width: 280px !important;
        width: calc(100vw - 40px) !important;
        left: 25px !important;
        right: 20px !important;
    }

    .label-text {
        font-size: 12px;
        margin-bottom: 0;
    }

    .label-subtext {
        font-size: 11px;
    }

    .number-pill {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .class-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .apply-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .search-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}


/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .search-container {
        padding: 12px;
    }

    .trip-type {
        flex-direction: row;
        gap: 16px;
    }

    .form-fields {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-traveller-popover {
        min-width: 400px !important;
    }
}

.field-input::placeholder {
    color: #111;
    opacity: 1;
}

.form-group .sub-text {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* Return Date Placeholder */
.return-group .main-text-placeholder {
    font-size: 20px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

/* Yön Değiştirme İkonu */
.swap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .swap-icon:hover {
        transform: translate(50%, -50%) rotate(180deg);
    }

.from-group {
    position: relative;
}


.to-group {
    /* margin-left: 12px; */
}

/* Trend Aramalar */
.trending-searches {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

    .trending-searches a {
        color: #007bff;
        text-decoration: none;
        margin-left: 12px;
        font-weight: 500;
    }

        .trending-searches a i {
            font-size: 12px;
        }

/* Ana Arama Butonu */
.search-button {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #080462 !important;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 60px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    /* box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4); */
    transition: all 0.3s ease;
}

    .search-button:hover {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 15px rgb(8 4 98 / 50%);
    }

/* Banner özelleştirmeleri */
.rt-banner-searchbox {
    background: none !important;
    box-shadow: none !important;
}

.departureDateLabel:after {
    border: solid #008cff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: "";
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    vertical-align: top;
    margin: 7px 0 0 8px;
    transition: all 0.3s ease-in-out;
}

/* ====== SELECT2 CUSTOM STYLES ====== */

/* Ana Select2 Kutusu */
.select2-container--default .select2-selection--single {
    border: none;
    border-radius: 6px !important;
    height: 60px; /* Seçim görüntüsü için yükseklik artırıldı */
    padding: 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    box-shadow: none;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #495057;
        line-height: 1.2;
        padding: 0;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #6c757d;
        font-size: 14px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 58px;
        right: 10px;
    }

    .select2-container--default .select2-selection--single .select2-selection__clear {
        color: #6c757d;
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-right: 10px;
        line-height: 58px;
        display: none;
    }

.select2-container--default.select2-container--focus .select2-selection--single {
    /* border-color: #80bdff; */
    /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); */
}

/* Seçim Görüntüsü */
.select2-selection-city {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.select2-selection-city__name {
    font-size: 38px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 2px;
}

.select2-selection-city__details {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

/* Dropdown Container */
.select2-container .select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 51px;
    width: 250px !important;
    margin-left: -16px;
}

[data-select2-id="2"] {
    padding-left: 12px;
}

.select2-container .select2-results > .select2-results__options {
    max-height: 300px;
    padding: 0;
}

/* Arama Input'u */
.select2-container--default .select2-search--dropdown {
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

    .select2-container--default .select2-search--dropdown .select2-search__field {
        border: 1px solid #ced4da;
        border-radius: 6px;
        padding: 8px 12px 8px 36px; /* Sol tarafta icon için boşluk */
        font-size: 14px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        width: 100% !important;
        box-sizing: border-box;
        background: #fff;
        color: #495057;
        outline: none;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

        .select2-container--default .select2-search--dropdown .select2-search__field:focus {
            border-color: #80bdff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        .select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
            color: #6c757d;
            opacity: 1;
        }

/* Arama İkonu */
.select2-search-icon {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
}

/* Liste Başlıkları */
.select2-results-header {
    padding: 12px 16px 8px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Liste Öğeleri */
.select2-results__option {
    background: #fff !important;
    padding: 0 !important;
    border: none !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #e3f2fd !important;
}

/* Şehir Sonuçları */
.select2-result-city {
    transition: background-color 0.2s ease;
    padding: 12px 16px !important;
    border-bottom: 1px solid #e9ecef;
}

    .select2-result-city:hover {
        background-color: #f8f9fa !important;
    }

.select2-result-city__name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 2px;
}

.select2-result-city__details {
    opacity: 0.7;
    font-size: 12px;
    color: #6c757d;
}

.select2-result-city__code {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: #495057;
    font-size: 13px;
}

.select2-results__option:first-child .select2-result-city {
    border-top: none;
}

.select2-results__option:last-child .select2-result-city {
    border-bottom: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057;
    line-height: 1.2;
    padding: 0 !important;
    display: block !important; /* flex yerine block */
    align-items: center;
    height: 100%;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: initial !important;
}

@media(max-width:1920px) {

    .rt-banner-searchbox {
        margin-bottom: -110px;
    }
}

@media(max-width:1440px) {

    .rt-banner-searchbox {
        margin-bottom: 0;
    }
}
/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
    .field-input {
        font-size: 20px;
    }

    .traveller-group .field-input {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .form-fields {
        flex-direction: column;
        border: none;
    }

    .form-group {
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0;
        padding: 16px 8px;
    }

        .form-group:last-child {
            border-bottom: none;
        }

    .swap-icon {
        top: 60px;
        left: auto;
        right: 20px;
        transform: none;
    }

    .to-group {
        margin-left: 0;
    }
}
/*TakvimCss:Start*/
.rt-banner-searchbox {
    overflow: visible;
}

.departureDateLabel {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}

.date-number {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    text-align: center;
    min-width: 50px;
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.date-month-year {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.date-day-name {
    font-size: 12px;
    color: #666;
    line-height: 1;
}

/* Calendar Dropdown Styles */
.calendar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 8px;
    display: none;
    /*animation: slideDown 0.3s ease;*/
    width: 650px;
}

    .calendar-dropdown.active {
        display: block;
    }

.calendar-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-header {
    background: #fff;
    padding: 12px 16px;
    color: #000;
}

.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.months-display {
    display: flex;
    justify-content: center;
    gap: 220px;
}

.month-year {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.calendar-content {
    padding: 12px 16px 16px 16px;
}

.dual-calendar-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.calendar-grid {
    width: 280px;
    flex: 1;
}

.day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 12px;
    padding: 6px 0;
}

.days-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.day {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    font-size: 14px;
    color: #333;
}

    .day:hover {
        background: #e3f2fd;
        color: #1976d2;
        font-weight: 600;
    }

    .day.other-month {
        color: #bbb;
        opacity: 0.6;
    }

    .day.selected {
        background: #1976d2;
        color: white;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
    }

    .day.today {
        /* background: #ff6b35;
        color: white;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);*/
    }

    .day.selected.today {
        background: #1976d2;
        box-shadow: 0 2px 8px rgba(25, 118, 210, 0.4);
    }

    .day.disabled {
        color: #ddd;
        background: transparent;
        cursor: not-allowed;
        opacity: 0.5;
    }

        .day.disabled:hover {
            background: transparent;
            color: #ddd;
            cursor: not-allowed;
        }

#prevMonth {
}
/* Responsive Design */
@media (max-width: 768px) {
    .calendar-dropdown {
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
    }

    .dual-calendar-grid {
        flex-direction: column;
        gap: 15px;
    }

    .calendar-grid {
        width: 100%;
    }

    .months-display {
        flex-direction: column;
        gap: 5px;
    }

    .calendar-content {
        padding: 10px 12px 12px 12px;
    }

    .day {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .month-year {
        font-size: 14px;
    }

    .nav-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .select2-selection-city__name, .traveller-number {
        font-size: 19px;
    }

    .select2-selection-city__details {
        font-size: 11px;
    }

    .form-group {
        padding: 0 8px;
        margin: 0;
    }

    .date-number {
        font-size: 19px;
    }

    .date-month-year {
        font-size: 11px;
    }

    .top-banner button, .date-display {
        padding: 3px 0;
    }

    .search-button {
        bottom: -53px;
    }

    .select2-container .select2-dropdown {
        width: 360px !important;
    }

    .swap-icon {
        top: 74px;
        left: 44%;
        right: auto;
        transform: rotate(90deg) !important;
    }

    .return-group .main-text-placeholder {
        font-size: 12px;
        font-weight: 500;
    }
    .passenger-section.inline {
        flex-direction: column;
        gap: 0;
    }
    .class-label{
        margin-bottom:0;
    }
    .passenger-section.inline {
        flex-direction: row;
        gap: 4px;
    }
    .number-pills {
        gap: 4px;
    }
}

.trending-searches {
    display: none;
}

/*TakvimCss:End*/
