/**
 * ZoomFlightz - Booking Page Stylesheet (booking.css)
 * Modern, responsive design for:
 * 1. 25-Minute Session Expiration Live Countdown Banner & Progress Bar
 * 2. Multi-Passenger Dynamic Forms (Lead Adult, Additional Adults, Children, Infants)
 * 3. Flight Summary & Price Breakdown Sticky Sidebar
 * 4. Credit/Debit Payment Card Form with Card Brand Badges & Security Seals
 * 5. Session Expired Modal Overlay
 */

/* ==========================================================================
   1. SESSION COUNTDOWN TIMER BANNER
   ========================================================================== */

.session-timer-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.session-timer-banner.session-warning-state {
    background: linear-gradient(135deg, var(--color-warning) 0%, var(--color-warning-hover) 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.session-timer-banner.session-urgent-state {
    background: linear-gradient(135deg, var(--color-danger) 0%, var(--color-danger-hover) 100%);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
    animation: urgentPulse 1.8s infinite;
}

@keyframes urgentPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.008); }
    100% { transform: scale(1); }
}

.session-timer-content {
    /* Layout handled by Bootstrap d-flex justify-content-between align-items-center flex-wrap gap-3 */
}

.session-timer-left {
    /* Layout handled by Bootstrap d-flex align-items-center gap-3 */
}

.session-timer-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.session-timer-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.session-timer-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 0;
}

.session-timer-digits-box {
    background: rgba(0, 0, 0, 0.22);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.session-timer-clock-icon {
    width: 18px;
    height: 18px;
    animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
    100% { transform: rotate(360deg); }
}

.session-timer-digits {
    font-family: 'Roboto Mono', monospace, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.session-progress-bar-wrap {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
}

.session-progress-bar {
    height: 100%;
    background: var(--color-bg-surface);
    width: 100%;
    border-radius: 4px;
    transition: width 1s linear;
}

/* ==========================================================================
   2. PASSENGER INFORMATION CARDS
   ========================================================================== */

.booking-section-card {
    background: var(--color-bg-surface);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.booking-section-header {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.booking-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.passenger-type-badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.passenger-type-badge.child {
    background: #fef3c7;
    color: #b45309;
}

.passenger-type-badge.infant {
    background: #fce7f3;
    color: #be185d;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.form-control, .form-select {
    background-color: var(--color-bg-surface);
    color: var(--color-text-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-strong);
    padding: 10px 14px;
    font-size: 14px;
    min-height: 44px;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    background-color: var(--color-bg-surface);
    color: var(--color-text-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

/* ==========================================================================
   3. PAYMENT CARD SECTION & BRAND BADGES
   ========================================================================== */

.payment-card-input-wrap {
    position: relative;
}

#cardNumberInput {
    padding-right: 56px !important;
    font-family: 'Roboto Mono', monospace, sans-serif;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.payment-card-icon-badge {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 5;
}

.card-brand-svg,
.card-brand-img {
    width: 38px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    display: block;
    transition: transform 0.15s ease;
}

.secure-payment-notice {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    margin-top: 18px;
}

.secure-payment-icon {
    color: #16a34a;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ==========================================================================
   4. FLIGHT DETAILS SIDEBAR
   ========================================================================== */

.booking-sidebar-card {
    background: var(--color-bg-surface);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    position: sticky;
    top: 90px;
}

.booking-sidebar-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.sidebar-flight-leg-box {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.sidebar-airline-row {
    margin-bottom: 12px;
}

.sidebar-airline-left {
}

.sidebar-airline-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 4px;
}

.sidebar-airline-name {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}

.sidebar-leg-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    background: #e2e8f0;
    color: #475569;
}

.sidebar-leg-badge.outbound {
    background: #e0f2fe;
    color: #0369a1;
}

.sidebar-leg-badge.return {
    background: #fef3c7;
    color: #92400e;
}

.sidebar-route-grid {
    margin-bottom: 8px;
}

.sidebar-time-col {
    text-align: left;
}

.sidebar-time-col.right {
    text-align: right;
}

.sidebar-time-val {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.sidebar-code-val {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.sidebar-duration-col {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.sidebar-duration-txt {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 3px;
}

.sidebar-flight-line {
    height: 2px;
    background: var(--color-border-strong);
    position: relative;
    width: 100%;
}

.sidebar-price-breakdown-row {
    font-size: 13px;
    color: #475569;
}

.sidebar-grand-total-row {
    border-top: 2px solid #e2e8f0;
    padding-top: 14px;
    margin-top: 14px;
}

.sidebar-total-label {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.sidebar-total-amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-accent);
}

/* ==========================================================================
   5. SESSION EXPIRED MODAL OVERLAY
   ========================================================================== */

.session-expired-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.session-expired-modal-box {
    background: var(--color-bg-surface);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: modalPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.session-expired-icon-circle {
    width: 72px;
    height: 72px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.session-expired-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.session-expired-modal-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.session-expired-modal-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: var(--color-text-white);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.35);
    transition: all 0.2s ease;
}

.session-expired-modal-btn:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent-active) 100%);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-accent-rgb), 0.45);
}

/* ==========================================================================
   6. SUBMIT BUTTON & LOADING STATE
   ========================================================================== */

.booking-submit-btn {
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-hover) 100%);
    color: var(--color-text-white);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 6px 20px rgba(var(--color-success-rgb), 0.35);
    transition: all 0.2s ease;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, var(--color-success-hover) 0%, #047857 100%);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-success-rgb), 0.45);
}

.booking-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99998;
}

/* ==========================================================================
   7. SELECTED FLIGHT CARD ON BOOKING PAGE
   ========================================================================== */

.selected-flight-card-container .flight-offer-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: var(--color-bg-surface);
    transition: all 0.2s ease;
}

.selected-flight-card-container .flight-offer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-subtle-border);
}

.selected-flight-card-container .offer-pricing-panel {
    background: var(--color-bg-body);
    border-radius: var(--radius-md);
    padding: 16px;
    border-left: none;
    align-items: center;
    text-align: center;
}

.selected-flight-card-container .offer-price-subtext {
    text-align: center;
}

.selected-flight-card-container .fare-breakdown-trigger {
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.selected-flight-card-container .fare-breakdown-trigger:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.selected-flight-card-container .offer-details-toggle-btn {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-strong);
    font-weight: 700;
    color: var(--color-text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.selected-flight-card-container .offer-details-toggle-btn:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
}

.selected-flight-card-container .offer-details-drawer {
    border-top: 1px dashed #e2e8f0;
    background: #fafafa;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* ==========================================================================
   5. TOM SELECT SEARCHABLE DROPDOWNS (COUNTRY, STATE, CITY)
   ========================================================================== */

.ts-wrapper {
    width: 100% !important;
}

.ts-wrapper.form-select,
.ts-wrapper .ts-control {
    width: 100% !important;
    border-radius: 8px !important;
    border: 1px solid var(--color-border-strong) !important;
    font-size: 14px !important;
    min-height: 44px !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
    background-color: var(--color-bg-surface);
    color: var(--color-text-primary);
}

.ts-wrapper.focus .ts-control {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15) !important;
}

.ts-wrapper.is-invalid .ts-control {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.ts-wrapper.disabled .ts-control {
    background-color: #f8fafc !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    border-color: #e2e8f0 !important;
}

.ts-dropdown {
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    padding: 6px 0 !important;
    margin-top: 4px !important;
    font-size: 14px !important;
    z-index: 1055 !important;
}

.ts-dropdown .option {
    padding: 8px 16px !important;
    font-size: 13.5px !important;
    color: #334155 !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease;
}

.ts-dropdown .option:hover,
.ts-dropdown .option.active {
    background-color: var(--color-primary) !important;
    color: var(--color-text-white) !important;
}

.ts-dropdown .optgroup-header {
    font-size: 11px !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #94a3b8;
    padding: 6px 14px 2px;
}

.ts-dropdown .create {
    padding: 8px 16px !important;
    color: var(--color-primary) !important;
    font-weight: 600 !important;
    border-top: 1px solid #f1f5f9;
}

.ts-dropdown .create:hover,
.ts-dropdown .create.active {
    background-color: var(--color-primary-subtle) !important;
    color: var(--color-primary-hover) !important;
}

.ts-wrapper .ts-control input {
    font-size: 14px !important;
    color: var(--color-text-primary) !important;
}

/* ==========================================================================
   6. CONFIRMATION & E-TICKET VOUCHER STYLES (SCREEN & PRINT)
   ========================================================================== */

.confirmation-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon-circle.success-pulse {
    background: #dcfce7;
    color: #16a34a;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.15);
}

.confirmation-icon-circle.failure-pulse {
    background: #fee2e2;
    color: #dc2626;
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.15);
}

.confirmation-email-alert {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
}

.printable-ticket-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.ticket-header-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ticket-ref-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
}

.ticket-pnr-code {
    font-size: 26px;
    font-weight: 900;
    font-family: 'Roboto Mono', monospace, sans-serif;
    color: #0284c7;
    letter-spacing: 1.5px;
    background: #e0f2fe;
    padding: 2px 12px;
    border-radius: 8px;
    border: 1px solid #bae6fd;
}

.copy-pnr-btn {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
}

.status-badge-confirmed {
    background: #16a34a !important;
    color: #ffffff;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ticket-date-text {
    font-size: 12px;
    color: #64748b;
}

.ticket-section-block {
    padding: 24px 28px;
    border-bottom: 1px solid #f1f5f9;
}

.ticket-section-block:last-child {
    border-bottom: none;
}

.ticket-section-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #334155;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-flight-leg {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 22px;
}

.ticket-leg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #cbd5e1;
}

.ticket-airline-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 2px;
    border: 1px solid #e2e8f0;
}

.ticket-leg-pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}

.ticket-leg-pill.outbound {
    background: #e0f2fe;
    color: #0369a1;
}

.ticket-leg-pill.return {
    background: #fef3c7;
    color: #92400e;
}

.ticket-flight-num {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.ticket-cabin-badge {
    font-size: 12px;
    font-weight: 700;
    color: #15803d;
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: 20px;
}

.ticket-route-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.ticket-time-col {
    min-width: 140px;
}

.ticket-time-val {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.ticket-code-val {
    font-size: 18px;
    font-weight: 800;
    color: #0284c7;
    margin-top: 2px;
}

.ticket-city-val {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.ticket-date-val {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.ticket-duration-col {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.ticket-duration-val {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.ticket-flight-line {
    height: 2px;
    background: #cbd5e1;
    width: 100%;
    margin-bottom: 6px;
}

.ticket-stops-pill {
    font-size: 11px;
    font-weight: 700;
    background: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 2px 10px;
    border-radius: 12px;
    display: inline-block;
}

.ticket-baggage-row {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12.5px;
    color: #475569;
}

.ticket-pax-table {
    border: 1px solid #e2e8f0;
}

.ticket-pax-table th {
    background: #f8fafc;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    padding: 10px 14px;
    font-weight: 700;
}

.ticket-pax-table td {
    padding: 12px 14px;
    font-size: 13.5px;
}

.ticket-billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.ticket-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px 4px;
    flex-wrap: wrap;
    gap: 12px;
}

.ticket-total-label {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.ticket-total-amount {
    font-size: 32px;
    font-weight: 900;
    color: #0284c7;
    line-height: 1;
}

.support-action-card {
    background: #ffffff;
    border: 2px solid #fed7aa;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.1);
    overflow: hidden;
}

.support-card-header {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-bottom: 1px solid #fed7aa;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.support-phone-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ea580c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-phone-link {
    font-size: 32px;
    font-weight: 900;
    color: #ea580c;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.support-phone-link:hover {
    color: #c2410c;
    transform: scale(1.02);
}

/* ==========================================================================
   PRINT STYLES FOR OFFICIAL ELECTRONIC TICKET
   ========================================================================== */
@media print {
    /* Hide non-printable web elements */
    nav, footer, .navbar, .site-footer,
    .no-print, .btn, .copy-pnr-btn,
    .action-buttons-wrap, .toastify,
    #confirmationFailureContainer {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 11pt !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .printable-ticket-card {
        border: 1px solid #000000 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        page-break-inside: avoid;
    }

    .print-official-header {
        display: block !important;
        padding: 18px 20px 0 !important;
    }

    .print-footer-notice {
        display: block !important;
        padding: 0 20px 20px !important;
    }

    .ticket-header-bar {
        background: #f1f5f9 !important;
        border-bottom: 1px solid #000 !important;
        padding: 14px 20px !important;
    }

    .ticket-pnr-code {
        background: none !important;
        border: 1px solid #000 !important;
        color: #000000 !important;
        font-size: 20pt !important;
    }

    .ticket-section-block {
        padding: 16px 20px !important;
        border-bottom: 1px solid #cbd5e1 !important;
    }

    .ticket-flight-leg {
        background: #ffffff !important;
        border: 1px solid #94a3b8 !important;
        border-radius: 4px !important;
        padding: 12px 14px !important;
    }

    .ticket-time-val {
        font-size: 16pt !important;
    }

    .ticket-total-amount {
        font-size: 22pt !important;
        color: #000000 !important;
    }

    .ticket-pax-table th,
    .ticket-pax-table td {
        border: 1px solid #000 !important;
        padding: 6px 8px !important;
    }
}

