:root {
    --bg-light: #f4f6f4;
    --primary-color: #1b5e20;
    --primary-dark: #0d3c13;
    --primary-light: #4caf50;
    --accent-color: #b78103;
    --accent-gold: #d4af37;
    --text-dark: #212121;
    --text-muted: #555555;
    --border-color: #d0d7d1;
    --card-bg: #ffffff;
    --border-radius: 6px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --transition: all 0.2s ease-in-out;
}

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

body, h1, h2, h3, h4, h5, h6, p, span, button, input, select, label, table, td, th {
    font-family: 'Mukta', sans-serif !important;
    text-rendering: optimizeLegibility;
    font-variant-ligatures: common-ligatures;
    font-feature-settings: "liga" on, "clig" on, "kern" on;
}

body.official-portal-theme {
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Falling background leaves - extremely subtle for official look */
.leaf-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.15;
}

/* Header Styling */
.gov-header {
    background-color: var(--primary-dark);
    color: white;
    border-bottom: 5px solid var(--accent-color);
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 10;
}

.gov-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .gov-header-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.emblem-container {
    width: 90px;
    height: 90px;
    background: white;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
    overflow: hidden;
}

.govt-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header-titles {
    display: flex;
    flex-direction: column;
}

.gov-top-sub {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.header-titles h2 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #e8f5e9;
    margin-bottom: 0.2rem;
}

.header-titles h1 {
    font-size: 2.1rem;
    font-weight: 800;
}

.header-titles .subtitle {
    font-size: 1.1rem;
    color: #c8e6c9;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* App Main Layout Grid */
.app-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    flex: 1;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

@media (max-width: 992px) {
    .app-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styling */
.app-sidebar {
    background-color: #f8faf8;
    border-right: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .app-sidebar {
        display: none;
    }
    .app-sidebar.mobile-active {
        display: flex;
        position: absolute;
        left: 0;
        top: 45px;
        bottom: 0;
        width: 260px;
        z-index: 20;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
    background-color: #e8f5e9;
    color: var(--primary-color);
    border-color: #c8e6c9;
}

.nav-item.active {
    border-left: 4px solid var(--primary-color);
}

.nav-icon {
    font-size: 1.15rem;
}

.sidebar-footer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    line-height: 1.4;
}

/* App Main Panel */
.app-main {
    background-color: white;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.top-status-bar {
    background-color: #f1f5f1;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 992px) {
    .sidebar-toggle {
        display: block;
    }
}

.portal-status-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.top-login-btn {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-login-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.top-user-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.user-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4caf50;
}

/* Content Area */
.content-wrapper {
    padding: 1.75rem;
    flex: 1;
}

.dashboard-view-layout {
    animation: fadeIn 0.4s ease;
}

/* Welcome Banner */
.welcome-banner {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.welcome-banner h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.welcome-banner h2 {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 700;
}

.welcome-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.stat-icon {
    font-size: 2.2rem;
    opacity: 0.8;
}

/* Visual Map layout */
.dashboard-visual-grid {
    margin-bottom: 2.5rem;
}

.visual-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.visual-card h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.map-hint-para {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Real-time Map Viewport styling */
.realtime-map-viewport {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: #e5e3df;
}

.map-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dot-green { width: 8px; height: 8px; border-radius: 50%; background-color: var(--primary-color); }
.dot-gold { width: 8px; height: 8px; border-radius: 50%; background-color: var(--accent-color); }

/* Official Leaders Grid (Inside main layout) */
.official-leaders-block {
    border-top: 2px solid #e8f5e9;
    padding-top: 2rem;
    margin-top: 2rem;
}

.section-title-official {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }
}

.official-leader-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.leader-avatar-frame {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background-color: #e8f5e9;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-desc-details h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.leader-rank {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.leader-gov {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Authentication Forms */
.auth-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 2rem auto;
}

.auth-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-methods {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .auth-methods {
        grid-template-columns: 1fr;
    }
}

.auth-method-box h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.auth-hint-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    background-color: #f9fbf9;
    padding: 0.4rem;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 0.75rem;
}

.auth-divider {
    font-weight: 700;
    color: var(--text-muted);
}

/* Form Dashboard styling */
.dashboard-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.user-profile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.user-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}

.logout-btn {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
}

.logout-btn:hover {
    background-color: #c62828;
    color: white;
}

.admin-actions-bar {
    background-color: #fffde7;
    border: 1px solid #fff59d;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-actions-bar h5 {
    color: #f57f17;
    font-weight: 700;
}

/* Tabs */
.tabs-container {
    display: flex;
    gap: 0.5rem;
    background-color: #eceff1;
    padding: 0.3rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.6rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tab-btn.active {
    background-color: white;
    color: var(--primary-color);
    border-radius: 4px;
}

/* Input Fields */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.phone-input-wrapper {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.country-code {
    background-color: #eceff1;
    padding: 0.7rem;
    border-right: 1px solid var(--border-color);
}

.phone-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0.7rem;
    width: 100%;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
select {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    width: 100%;
    outline: none;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: var(--primary-color);
}

.action-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
}

.action-btn:hover {
    background-color: var(--primary-dark);
}

.location-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.gps-btn {
    background-color: #e8f5e9;
    color: var(--primary-color);
    border: 1px dashed var(--primary-color);
    padding: 0.6rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 700;
}

.photo-upload-section {
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin: 1.25rem 0;
    background-color: #fafafa;
}

.photo-uploader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-trigger {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.preview-wrapper {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.preview-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    cursor: pointer;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
}

/* Data Tables */
.table-responsive {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: #f9fbf9;
    color: var(--primary-dark);
    font-weight: 700;
}

.delete-btn {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

/* Search view directories */
.filter-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }
}

.public-plantations-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.list-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.list-header h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.count-badge {
    background-color: #e8f5e9;
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plantations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.plantation-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.card-header-tags {
    padding: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    background-color: #f9fbf9;
}

.tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

.tag-dept { background-color: #e8f5e9; color: var(--primary-color); }
.tag-taluka { background-color: #fff8e1; color: var(--accent-color); }
.tag-type { background-color: #eceff1; color: var(--text-muted); }

.card-media {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.carousel-img.active {
    display: block;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-body h5 {
    font-size: 1rem;
    color: var(--primary-dark);
}

.detail-line {
    display: flex;
    font-size: 0.85rem;
}

.detail-label {
    width: 90px;
    color: var(--text-muted);
    font-weight: 700;
}

.detail-val {
    color: var(--text-dark);
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-color);
}

.card-btn {
    text-align: center;
    padding: 0.45rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-map { background-color: #e3f2fd; color: #1e88e5; border: 1px solid #bbdefb; }
.btn-qr { background-color: #fff3e0; color: #fb8c00; border: 1px solid #ffe0b2; }

.btn-map:hover { background-color: #1e88e5; color: white; }
.btn-qr:hover { background-color: #fb8c00; color: white; }

/* QR Scanner */
.scanner-card-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .scanner-card-layout {
        grid-template-columns: 1fr;
    }
}

.scanner-screen {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.scanner-camera-viewport {
    background-color: #000;
    aspect-ratio: 4/3;
    border-radius: 4px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanning-laser {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #00ff00;
    animation: scanLaser 3s infinite linear;
}

.scanner-overlay-border {
    position: absolute;
    width: 50%;
    height: 50%;
    border: 2px dashed #00ff00;
    border-radius: 4px;
}

.scanner-status-text {
    position: absolute;
    bottom: 10px;
    color: white;
    font-size: 0.8rem;
}

.scanner-info-side {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scanner-decor-img {
    font-size: 2.5rem;
    text-align: center;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-card {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 420px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header-success {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.success-icon-check {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-code-wrapper {
    background-color: #fafafa;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

/* Footer Styling */
.official-footer {
    background-color: var(--primary-dark);
    color: #e8f5e9;
    padding: 1.25rem 2rem;
    border-top: 3px solid var(--accent-color);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Utility classes */
.hidden { display: none !important; }

/* Transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scanLaser {
    0% { top: 0%; }
    50% { top: 98%; }
    100% { top: 0%; }
}
