/* Booking system styling extracted from trip2x.php */

.flight-option {
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flight-option:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flight-option.selected {
    background: #e8f4f8;
    border-color: #007bff !important;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.flight-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.room-option {
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-option:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.room-option.selected {
    background: #e8f4f8;
    border-color: #007bff !important;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.room-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.room-option img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.mobility-option {
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobility-option:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobility-option.selected {
    background: #e8f4f8;
    border-color: #007bff !important;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.mobility-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#carRentalOptions {
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease, padding 0.4s ease;
    max-height: 0;
    opacity: 0;
    padding: 0;
}

#carRentalOptions[style*="display: block"] {
    max-height: 1500px;
    opacity: 1;
    padding: 20px 0;
}

.car-type-card {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.car-type-card:hover {
    background: #f8f9fa;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.car-type-card h4 {
    margin-bottom: 15px;
    color: #212529;
}

.car-type-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 4px 8px;
}

.car-type-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.car-type-card ul li {
    padding: 5px 0;
    font-size: 0.95rem;
}

.car-type-card ul li::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.car-type-card .form-group {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.car-type-card select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.car-type-card select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.cost-card {
    position: sticky;
    top: 20px;
    min-height: 400px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cost-card h3 {
    color: #333;
}

.cost-card .bg-main-color {
    background-color: #007bff;
}

.baggage-select {
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    transition: border-color 0.2s ease;
}

.baggage-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

#trip-settings-form input[type="date"],
#trip-settings-form input[type="number"],
#trip-settings-form select {
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

#trip-settings-form input[type="date"]:focus,
#trip-settings-form input[type="number"]:focus,
#trip-settings-form select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

#trip-settings-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
}

#trip-settings-form .form-check-label {
    cursor: pointer;
    user-select: none;
}

.btn-primary.background-main-color {
    background-color: #007bff;
    transition: all 0.3s ease;
}

.btn-primary.background-main-color:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.badge-info {
    background-color: #17a2b8;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85em;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85em;
}

.badge-success {
    background-color: #28a745;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .flight-option .row,
    .room-option .row {
        flex-direction: column;
    }

    .flight-option .col-md-1,
    .flight-option .col-md-2,
    .flight-option .col-md-3,
    .room-option .col-md-1,
    .room-option .col-md-3,
    .room-option .col-md-5 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .cost-card {
        position: relative;
        top: 0;
    }

    .sticky-sidebar {
        position: relative !important;
    }
}

.price-matrix-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .price-matrix-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .js-price-cell {
        min-height: 85px !important;
        padding: 6px 3px !important;
    }

    .js-price-cell > div:first-of-type {
        font-size: 16px !important;
    }

    .js-price-display {
        font-size: 12px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .price-matrix-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 7px;
    }
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
    border-radius: 6px;
    padding: 12px 20px;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
    border-radius: 6px;
    padding: 12px 20px;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin-bottom 0.3s ease;
}

.alert {
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.alert code {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.small {
    font-size: 0.875rem;
}

.margin-right-5px {
    margin-right: 5px;
}

.margin-bottom-10px {
    margin-bottom: 10px;
}

.margin-tb-10px {
    margin-top: 10px;
    margin-bottom: 10px;
}

.padding-10px {
    padding: 10px;
}

.padding-15px {
    padding: 15px;
}

.padding-20px {
    padding: 20px;
}

.padding-15px-30px {
    padding: 15px 30px;
}

.padding-bottom-8px {
    padding-bottom: 8px;
}

.border-bottom-1 {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-second-color {
    border-color: #dee2e6;
}

.border-grey-1 {
    border-color: #dee2e6;
}

.border-main-color {
    border-color: #007bff;
}

.background-white {
    background-color: #fff;
}

.background-light-grey,
.bg-light {
    background-color: #f8f9fa;
}

.text-main-color {
    color: #007bff;
}

.text-muted {
    color: #6c757d;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-weight-700,
.font-weight-bold {
    font-weight: 700;
}

.fa-rotate-180 {
    transform: rotate(180deg);
    display: inline-block;
}

.rounded {
    border-radius: 0.25rem;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-self-center {
    align-self: center;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.nav-tabs {
    border-bottom: 2px solid #e9ecef !important;
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f9fa !important;
}

.nav-tabs .nav-item {
    margin-bottom: 0 !important;
    flex: 1 1 auto !important;
}

.nav-tabs .nav-link {
    border: none !important;
    border-bottom: 3px solid transparent !important;
    background: transparent !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #666 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    width: 100% !important;
    text-align: center !important;
    outline: none !important;
}

.nav-tabs .nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.nav-tabs .nav-link:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-bottom-color: #e93074 !important;
    outline: none !important;
}

.nav-tabs .nav-link.active {
    background: #fff !important;
    color: #333 !important;
    border-bottom-color: #e93074 !important;
    outline: none !important;
}

.nav-tabs .nav-link i {
    margin-right: 5px;
    font-size: 14px;
    color: #999 !important;
    transition: color 0.3s ease;
}

.nav-tabs .nav-link.active i,
.nav-tabs .nav-link:hover i {
    color: #007bff !important;
}

.tab-content {
    padding: 20px;
    background: #fff;
}

.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
}

.tab-pane.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.tab-pane.fade.in {
    opacity: 1;
}

.input-group-addon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
    background-color: #fef6f9;
    border: 1px solid #ced4da;
    border-radius: 0.25rem 0 0 0.25rem;
    transition: all 0.2s ease;
    height: auto;
    cursor: pointer;
}

.input-group .form-control {
    height: auto;
}

.input-group:focus-within .input-group-addon {
    border-color: #e93074;
    background-color: #fff;
}

.input-group-addon:hover {
    background-color: #fff;
}

.flatpickr-calendar {
    width: 330px !important;
    box-shadow: 0 8px 20px rgba(233, 48, 116, 0.3);
    border-radius: 10px;
    border: 2px solid #e93074;
    font-family: inherit;
    padding: 0;
}

.flatpickr-calendar.open {
    display: block;
    z-index: 99999 !important;
}

.flatpickr-calendar .flatpickr-months {
    background: linear-gradient(135deg, #e93074 0%, #c72861 100%);
    border-radius: 8px 8px 0 0;
    padding: 15px 10px;
}

.flatpickr-calendar .flatpickr-current-month {
    font-size: 120%;
    font-weight: 700;
    color: #fff;
}

.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    padding: 4px 10px;
}

.flatpickr-calendar .flatpickr-weekday {
    color: #e93074;
    font-weight: 700;
    font-size: 95%;
    background: #fef6f9;
}

.flatpickr-calendar .flatpickr-days {
    width: 330px !important;
    padding: 10px;
}

.flatpickr-calendar .dayContainer {
    width: 310px !important;
    min-width: 310px !important;
    max-width: 310px !important;
}

.flatpickr-calendar .flatpickr-day {
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 6px;
    margin: 2px;
    font-size: 15px;
    font-weight: 500;
}

.flatpickr-calendar .flatpickr-day:hover:not(.flatpickr-disabled) {
    background: #fef6f9;
    border-color: #e93074;
    color: #e93074;
    transform: scale(1.08);
}

.flatpickr-calendar .flatpickr-day.today {
    border: 2px solid #e93074;
    background: #ffe8f1;
    color: #e93074;
    font-weight: 700;
}

.flatpickr-calendar .flatpickr-day.selected {
    background: #e93074;
    border-color: #e93074;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(233, 48, 116, 0.4);
}

.flatpickr-calendar .flatpickr-day.selected:hover {
    background: #c72861;
}

.flatpickr-calendar .flatpickr-day.flatpickr-disabled {
    color: #d5d5d5;
}

.flatpickr-input[readonly] {
    cursor: pointer;
    background-color: #fff;
}

.flatpickr-input[readonly]:focus {
    border-color: #e93074;
    box-shadow: 0 0 0 0.2rem rgba(233, 48, 116, 0.25);
}

@media (max-width: 768px) {
    .flatpickr-calendar,
    .flatpickr-calendar .flatpickr-days {
        width: 310px !important;
    }

    .flatpickr-calendar .dayContainer {
        width: 290px !important;
        min-width: 290px !important;
        max-width: 290px !important;
    }

    .flatpickr-calendar .flatpickr-day {
        width: 39px;
        height: 39px;
        line-height: 39px;
    }
}

@media (max-width: 768px) {
    .nav-tabs {
        flex-direction: column !important;
    }

    .nav-tabs .nav-item {
        flex: 1 1 100% !important;
    }

    .nav-tabs .nav-link {
        text-align: left !important;
        border-left: 3px solid transparent !important;
        border-bottom: 1px solid #e9ecef !important;
    }

    .nav-tabs .nav-link.active,
    .nav-tabs .nav-link:hover {
        border-left-color: #e93074 !important;
        border-bottom-color: #e9ecef !important;
    }
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 6px;
    margin-top: 15px;
}

.photo-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.photo-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.photo-gallery-item:hover img {
    transform: scale(1.08);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.photo-gallery-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: #fff;
    font-size: 22px;
    transform: scale(0.85);
    transition: transform 0.25s ease;
}

.photo-gallery-item:hover .photo-overlay i {
    transform: scale(1);
}

@media (max-width: 576px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
        gap: 5px;
    }
}

@media (min-width: 992px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
        gap: 8px;
    }
}

.travel-icons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.travel-icons-container i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.travel-icons-container i:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

@supports not (gap: 12px) {
    .travel-icons-container > * {
        margin: 0 6px;
    }
}

.trip-summary-price {
    position: relative;
    max-width: 160px;
}

.trip-summary-price-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e91e63 0%, #ec4899 100%);
}

.trip-summary-price-label {
    color: #666;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    margin-top: 2px;
}

.trip-summary-price-value {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: #e91e63;
    margin-bottom: 6px;
    font-family: Arial, sans-serif;
}

.trip-summary-price-caption {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.trip-location-copy {
    font-size: 18px;
}

.trip-hotel-stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(233, 48, 116, 0.3);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.trip-hotel-stars-icons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fdbe19;
    font-size: 20px;
}

@media (max-width: 576px) {
    .trip-hotel-stars {
        padding: 5px 10px;
    }

    .trip-hotel-stars-icons {
        font-size: 18px;
        gap: 3px;
    }
}

.travel-icons-container-large {
    font-size: 24px;
}

.travel-icons-container-large .travel-feature-icon {
    font-size: 28px;
}

.travel-icons-container-large .travel-feature-plus {
    font-size: 20px;
}

.trip-actions {
    text-align: center;
}

.btn-offerte {
    background-color: #e93074;
    border-color: #e93074;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-offerte:hover,
.btn-offerte:focus {
    background-color: #cf2968;
    border-color: #cf2968;
    color: #fff;
}

.booking-section-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.room-eh-info-trigger {
    -webkit-appearance: none;
    appearance: none;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 8px;
    border: 0;
    border-radius: 999px;
    background: #e93074;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(233, 48, 116, 0.35);
}

@media (max-width: 576px) {
    .booking-section-title {
        gap: 6px;
    }

    .room-eh-info-trigger {
        width: 20px;
        height: 20px;
        margin-left: 0;
        font-size: 13px;
    }
}

.room-eh-info-trigger:hover,
.room-eh-info-trigger:focus {
    background: #cc1f61;
    color: #fff;
    outline: none;
}

.room-eh-modal {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.room-eh-modal.is-open {
    display: flex;
}

.room-eh-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.room-eh-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.room-eh-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #fff6fa;
}

.room-eh-modal-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
}

.room-eh-modal-close {
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 1.7rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.room-eh-modal-body {
    padding: 16px;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.55;
}

.room-eh-modal-lead {
    font-weight: 700;
    margin-bottom: 10px;
}

.room-eh-modal-highlight {
    margin: 12px 0;
    padding: 10px 12px;
    border-left: 4px solid #e93074;
    background: #fff4f8;
    display: grid;
    gap: 2px;
}

.room-eh-modal-highlight strong {
    color: #111827;
}

.room-eh-modal-highlight span {
    color: #475569;
    font-size: 0.89rem;
}

body.room-eh-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .room-eh-modal-dialog {
        max-width: 96vw;
    }
}

.booking-section-icon {
    color: #007bff;
    margin-right: 8px;
    font-size: 15px;
}

.booking-section-icon-success {
    color: #28a745;
    margin-right: 5px;
    font-size: 15px;
}

.gallery-help-text {
    margin-top: 15px;
    color: #666;
    font-size: 13px;
}

.gallery-help-text .fa,
.gallery-help-icon {
    margin-right: 5px;
}

.trip-map-image {
    max-width: 100%;
    height: auto;
}

.trip-map-iframe {
    border: 0;
}

.trip-map-caption {
    margin-top: 15px;
    font-weight: 600;
    color: #666;
}

.alert-accommodation-unavailable {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545 !important;
}

.alert-flights-unavailable {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107 !important;
}

.alert-warning-icon,
.alert-warning-heading,
.alert-warning-body {
    color: #856404;
}

.matrix-loading-indicator {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
}

.matrix-loading-spinner {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    border-width: 2px;
    color: #28a745;
}

.matrix-loading-text {
    animation: pulse 1.5s ease-in-out infinite;
}

.room-allocation-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    border-left: 4px solid #ff9800;
}

.room-allocation-warning-icon-wrap {
    flex-shrink: 0;
    margin-right: 12px;
}

.room-allocation-warning-icon {
    color: #ff9800;
    font-size: 24px;
}

.room-allocation-warning-body {
    flex: 1;
}

.room-allocation-warning-title {
    color: #856404;
    font-size: 15px;
}

.room-allocation-warning-copy {
    color: #856404;
    font-size: 13px;
}

.price-matrix-weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
}

.price-matrix-cell {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 95px;
    position: relative;
    cursor: default;
}

.js-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    display: none;
}

.price-matrix-day-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.price-matrix-date {
    font-size: 10px;
    color: #6c757d;
    margin-bottom: 4px;
}

.js-status-note {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 2px;
}

.js-price-display {
    line-height: 1.2;
}

.js-per-person-label {
    font-size: 9px;
    color: #999;
    margin-top: 2px;
}

.travel-date-input {
    height: calc(2.25rem + 2px);
    min-height: calc(2.25rem + 2px);
    line-height: 1.5;
    background-color: #fff !important;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    cursor: pointer !important;
    padding-left: 2.55rem !important;
    padding-right: 0.75rem;
}

.travel-date-input[readonly],
.flatpickr-input[readonly].travel-date-input {
    cursor: pointer !important;
    background-color: #fff !important;
}

.travel-date-field {
    position: relative;
    cursor: pointer;
}

.travel-date-field-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    width: 1rem;
    text-align: center;
    line-height: 1;
    pointer-events: none;
    z-index: 4;
}

.travel-date-field .form-control[readonly],
.travel-date-field input[readonly],
.travel-date-field .flatpickr-input[readonly],
.travel-date-field .travel-date-input,
.travel-date-field .travel-date-input:hover,
.travel-date-field .travel-date-input:focus {
    cursor: pointer !important;
}

.travel-date-input:focus,
.flatpickr-input.travel-date-input:focus {
    border-color: #e93074;
    box-shadow: 0 0 0 0.2rem rgba(233, 48, 116, 0.25);
}

.travel-date-field:focus-within .travel-date-field-icon {
    color: #e93074;
}

.flight-description {
    font-size: 13px;
    line-height: 1.5;
}

.flight-package-label {
    display: block;
}

.mismatch-alert {
    border-left: 4px solid #dc3545;
}

.mismatch-alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mismatch-alert-icon {
    font-size: 24px;
    color: #dc3545;
}

.mismatch-alert-copy {
    margin-top: 5px;
}

.room-status-unallocated {
    color: #dc3545;
}

.room-overselection-alert {
    padding: 10px 15px;
    font-size: 14px;
}

.room-selection-select {
    width: 80px;
}

.room-option-image {
    max-height: 120px;
    object-fit: cover;
    width: 100%;
}

.room-image-fallback {
    padding: 30px 0;
}

.room-occupancy-copy {
    font-size: 12px;
}

.room-debug-copy {
    font-family: monospace;
    font-size: 11px;
    line-height: 1.4;
    word-break: break-word;
    margin-top: -4px;
    margin-bottom: 6px;
}

.tooltip-help-trigger {
    cursor: help;
}

.transport-choice-label {
    cursor: pointer;
}

.transport-choice-label-static {
    cursor: default;
}

.car-rental-options-panel {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
}

.car-type-option {
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.car-type-option-manual:hover {
    background-color: #e8f4f8;
    border-color: #007bff;
}

.car-type-option-automatic:hover {
    background-color: #f0f8ff;
    border-color: #17a2b8;
}

.car-type-option-body {
    flex: 1;
}

.car-type-option-icon-manual {
    color: #007bff;
}

.car-type-option-icon-automatic,
.car-price-automatic {
    color: #17a2b8;
}

.car-price-manual,
.car-rental-total-price {
    color: #28a745;
}

.car-price-copy {
    font-size: 16px;
}

.car-type-option-side {
    margin-left: 15px;
}

.car-type-badge-small,
.car-type-badge-warning-small {
    font-size: 10px;
}

.unavailable-state-card {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.unavailable-state-icon {
    font-size: 48px;
    color: #ff9800;
    margin-bottom: 15px;
}

.unavailable-state-title,
.unavailable-state-copy,
.unavailable-state-subcopy,
.unavailable-state-contact {
    color: #856404;
}

.unavailable-state-subcopy {
    font-size: 14px;
}

.unavailable-state-tip {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.unavailable-state-tip-copy {
    color: #333;
    font-weight: 500;
}

.btn-offerte-large {
    background-color: #e93074;
    border-color: #e93074;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    padding: 15px;
}

.btn-offerte-large:hover,
.btn-offerte-large:focus {
    background-color: #cf2968;
    border-color: #cf2968;
    color: #fff;
}

.sidebar-price-value {
    font-size: 2.5rem;
    line-height: 1;
}

.included-flight-icon {
    color: #28a745;
    margin-right: 5px;
}

.included-room-coverage {
    font-size: 11px;
}

.pricing-meta-copy {
    font-size: 0.85rem;
}

.trip-total-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px !important;
}

.trip-total-label {
    font-size: 1.25rem;
}

.trip-total-value {
    font-size: 2rem;
    line-height: 1;
}

.book-button-disabled {
    cursor: default;
}

.trip-tooltip .tooltip-inner {
    max-width: 350px;
    font-size: 14px;
    padding: 12px 15px;
    text-align: left;
    line-height: 1.5;
}

.price-matrix-lowest-badge {
    background: #28a745;
    color: #fff;
    border-radius: 3px;
    padding: 1px 4px;
    font-size: 9px;
    font-weight: 700;
    display: block;
}

.price-matrix-lowest-badge-icon {
    font-size: 8px;
}

.debug-room-type-non-refundable {
    color: #d32f2f;
}

.debug-room-type-flexible {
    color: #388e3c;
}