:root {
    /* Rolex-inspired Luxury Palette */
    --color-primary: #2e3b2c;
    /* Deep Olive Green */
    --color-primary-light: #4a5d23;
    --color-primary-dark: #1a2219;
    --color-accent: #d4af37;
    /* Metallic Gold */
    --color-accent-hover: #b8972e;

    --color-bg: #f9f9f9;
    --color-surface: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e0e0e0;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body.dark-mode {
    --color-bg: #0f1117;
    --color-surface: #1a1d2a;
    --color-text: #f0f0f0;
    --color-text-light: #aaaacc;
    --color-border: #2e3250;
    /* Override primary so headings/icons that use it are visible on dark bg */
    --color-primary: #c9b870;
    --color-primary-light: #e0d090;
    --color-primary-dark: #0d1014;
}

/* Ensure dashboard headings, stat widgets, table headers are readable in dark mode */
body.dark-mode .staff-widget h3,
body.dark-mode .page-title,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5 {
    color: var(--color-text);
}

body.dark-mode .staff-widget {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,175,55,0.2);
}

body.dark-mode .staff-table th {
    background: rgba(255,255,255,0.06);
    color: var(--color-accent);
}

body.dark-mode .staff-content-panel,
body.dark-mode .staff-layout-grid {
    background: var(--color-bg);
}

/* Fix Fleet/Crew/Finance dashboard panel headings in dark mode */
body.dark-mode .panel-card,
body.dark-mode .chart-panel {
    background: var(--color-surface);
    border-color: var(--color-border);
}

body.dark-mode .chart-header h3,
body.dark-mode .panel-card h3 {
    color: var(--color-text);
}

/* Fix navbar text-light in dark mode */
body.dark-mode .info-label { color: var(--color-text-light); }
body.dark-mode .info-val   { color: var(--color-text); }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 80px;
    background: transparent;
    border-bottom: none;
    z-index: 999;
    transition: var(--transition);
}

/* Solid banner for all non-homepage pages */
.navbar-solid {
    position: fixed;
    background: rgba(26, 34, 25, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}


.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    margin: 0 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0.9;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
    opacity: 1;
}

.nav-actions .btn-text {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    margin-right: 20px;
    transition: var(--transition);
}

.nav-actions .btn-text:hover {
    color: var(--color-accent);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Views */
.view {
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    padding-top: 80px;
    /* offset for navbar */
    min-height: 100vh;
}

.view.active-view {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
#view-hero {
    padding-top: 0;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 34, 25, 0.9) 0%, rgba(26, 34, 25, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 60px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    transition: var(--transition);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

/* Booking Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.booking-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.booking-tabs .tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.booking-tabs .tab.active,
.booking-tabs .tab:hover {
    color: var(--color-accent);
}

.booking-tabs .tab.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-widget .input-group label {
    color: rgba(255, 255, 255, 0.8);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0 16px;
    transition: var(--transition);
}

.booking-widget .input-with-icon {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.input-with-icon i {
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}

body.dark-mode .input-with-icon i {
    color: var(--color-accent);
}

.booking-widget .input-with-icon i {
    color: var(--color-primary);
}

.input-with-icon input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
}

.booking-widget .input-with-icon input {
    color: var(--color-primary-dark);
}

.input-with-icon:focus-within {
    box-shadow: 0 0 0 2px var(--color-accent);
    background: var(--color-bg);
}

.booking-widget .input-with-icon:focus-within {
    background: rgba(255, 255, 255, 1);
}

.btn-search {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-search:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-accent);
}

/* Common Page Styles */
.page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.btn-back {
    background: none;
    border: none;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 24px;
}

.btn-back:hover {
    color: var(--color-primary);
}

.page-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Flight Selection View */
.calendar-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 20px 0;
    margin-bottom: 40px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.calendar-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.calendar-day {
    flex: 0 0 calc(100% / 7 - 10px);
    min-width: 120px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-day:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.calendar-day.selected {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.calendar-day.selected .day-price {
    color: var(--color-accent);
}

.day-name {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.day-date {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.day-price {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Flight List Styles */
.flight-card {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    transition: var(--transition);
}

.flight-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.flight-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.flight-time-box {
    display: flex;
    flex-direction: column;
}

.flight-time {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
}

.flight-airport {
    color: var(--color-text-light);
    font-weight: 500;
}

.flight-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    position: relative;
    padding: 0 20px;
}

.flight-duration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.flight-duration i {
    background: var(--color-surface);
    padding: 0 10px;
    z-index: 1;
    color: var(--color-accent);
}

.flight-duration span {
    margin-top: 8px;
}

.flight-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flight-classes {
    display: flex;
    gap: 10px;
}

.class-option {
    border: 1px solid var(--color-border);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    min-width: 120px;
}

.class-option:hover {
    border-color: var(--color-accent);
}

.class-option.selected {
    border-color: var(--color-accent);
    background: rgba(212, 175, 55, 0.05);
}

.class-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
    display: block;
}

.class-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 600;
}

/* Passenger Details View */
.details-form-container {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
}

.details-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.details-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.details-section h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-section h3 i {
    color: var(--color-accent);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.baggage-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.baggage-selector:hover {
    border-color: var(--color-accent);
}

.baggage-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.baggage-title {
    font-weight: 600;
}

.baggage-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.counter-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-counter {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-counter:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.action-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Seat Map View */
.seat-map-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.airplane-fuselage {
    background: var(--color-surface);
    border-radius: 100px 100px 40px 40px;
    padding: 60px 40px 40px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 4px solid var(--color-border);
    max-width: 400px;
    width: 100%;
}

.airplane-fuselage::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    background: var(--color-bg);
    border-radius: 50px;
    opacity: 0.5;
}

.seat-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 12px;
}

.seat-row.exit-row {
    margin-bottom: 40px;
    position: relative;
}

.seat-row.exit-row::after {
    content: 'EXIT';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.7rem;
    color: var(--color-accent);
    font-weight: bold;
    letter-spacing: 2px;
}

.seat-row.exit-row::before {
    content: 'EXIT';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.7rem;
    color: var(--color-accent);
    font-weight: bold;
    letter-spacing: 2px;
}

.seat-aisle {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.seat {
    width: 40px;
    height: 40px;
    border-radius: 8px 8px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.seat::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    width: 80%;
    height: 6px;
    background: inherit;
    border-radius: 2px;
    opacity: 0.7;
}

.seat.available {
    background: var(--color-bg);
    border-color: var(--color-border);
    color: var(--color-text-light);
}

.seat.available:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.seat.selected {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: bold;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.seat.occupied {
    background: #e0e0e0;
    border-color: #d0d0d0;
    color: #a0a0a0;
    cursor: not-allowed;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.legend-item .seat {
    width: 24px;
    height: 24px;
    cursor: default;
    transform: none !important;
}

/* Manage Booking View */
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.success-icon i {
    width: 40px;
    height: 40px;
}

.manage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.summary-card {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-accent);
}

.summary-flight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.summary-city {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.summary-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.detail-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.detail-value {
    font-weight: 600;
    color: var(--color-text);
}

.action-card {
    background: var(--color-primary);
    border-radius: 12px;
    padding: 32px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-card h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
}

.action-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    margin-top: 10px;
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}/ *   F i x   f o r   d r o p d o w n / d a t a l i s t   a l i g n m e n t   * / 
 
 i n p u t ,   d a t a l i s t   {   t e x t - a l i g n :   l e f t   ! i m p o r t a n t ;   } 
 
 

:root:has(body.dark-mode),
body.dark-mode {
    --color-primary: #0a192f;
    --color-primary-light: #112240;
    --color-primary-dark: #020c1b;
    --color-accent: #D4AF37;
    --color-accent-hover: #e0be4e;
    --color-bg: #0a192f;
    --color-surface: #112240;
    --color-text: #ffffff;
    --color-text-light: rgba(255, 255, 255, 0.85);
    --color-border: #233554;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p {
    color: #ffffff !important;
}

body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Modal Framework */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-surface);
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--color-accent);
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    color: var(--color-text);
}

.close-btn {
    color: var(--color-text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: var(--color-accent);
}

/* Print Styles for PDF Export */
@media print {
    #staff-sidebar, .staff-sidebar-panel, .admin-sidebar, nav, header, footer, .staff-footer, .btn, .btn-primary, .btn-admin, button, .action-btn {
        display: none !important;
    }
    #app-container, .admin-container, .main-content {
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
        color: black !important;
        width: 100% !important;
        max-width: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    body {
        background: white !important;
        color: black !important;
        margin: 0 !important;
    }
    .panel-card, .stat-card, .table-container, .chart-panel {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        page-break-inside: avoid;
        background: white !important;
        color: black !important;
    }
    * {
        color: black !important;
        text-shadow: none !important;
    }
}

/* Hide Google Translate UI natively */
body { top: 0px !important; }
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, .goog-te-gadget-simple, .goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
