:root {
    --primary: #c7ff2e;
    --primary-hover: #b4ea24;
    --primary-text: #0f0f0f;
    --primary-surface: rgba(199, 255, 46, 0.16);

    --bg-main: #f5f6f9;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.88);
    --bg-hover: #eceef2;
    --border-color: #e2e5eb;

    --text-primary: #0f0f0f;
    --text-secondary: #808080;
    --text-on-primary: #0f0f0f;

    --status-success: #10b981;
    --status-warning: #f59e0b;
    --status-danger: #ef4444;

    --radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 14px 35px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
    --primary: #c7ff2e;
    --primary-hover: #d2ff4f;
    --primary-text: #0f0f0f;
    --primary-surface: rgba(199, 255, 46, 0.15);

    --bg-main: #0f0f0f;
    --bg-surface: #1c1d22;
    --bg-glass: rgba(28, 29, 34, 0.85);
    --bg-hover: #2e2e2e;
    --border-color: #2e2e2e;

    --text-primary: #ffffff;
    --text-secondary: #808080;
    --text-on-primary: #0f0f0f;
    --shadow-float: 0 16px 40px rgba(0, 0, 0, 0.65);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    transition: background-color 0.25s ease, color 0.25s ease;
    padding-bottom: 120px;
}

.hidden { display: none !important; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-caption { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.hidden-file { display: none; }

.ui-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}
.ui-icon.large { width: 44px; height: 44px; }

#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 11000;
    pointer-events: none;
    width: 90%;
    max-width: 380px;
}

.toast {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    animation: toastIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.toast.toast-success { border-left: 4px solid var(--primary); }
.toast.toast-error { border-left: 4px solid var(--status-danger); }
.toast.toast-info { border-left: 4px solid var(--text-primary); }

@keyframes toastIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(-10px) scale(0.95); } }

#splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, #1c1d22 0%, #0f0f0f 100%);
    display: flex; justify-content: center; align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#splash-screen.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-box { text-align: center; display: flex; flex-direction: column; align-items: center; }
.splash-icon-wrapper { position: relative; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.splash-logo { width: 75px; height: 75px; object-fit: contain; z-index: 2; }
.pulse-ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid rgba(199, 255, 46, 0.35); animation: pulse 1.8s infinite ease-out; }
.splash-app-title { color: #ffffff; font-size: 24px; font-weight: 700; letter-spacing: 1px; }
.splash-creator { color: #808080; font-size: 13px; margin: 6px 0 20px; }
.splash-loader-bar { width: 140px; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 99px; overflow: hidden; position: relative; }
.splash-loader-fill { width: 100%; height: 100%; background: var(--primary); animation: loader 1.5s infinite ease-in-out; }

@keyframes pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
@keyframes loader { 0% { transform: translateX(-100%); } 50% { transform: translateX(0%); } 100% { transform: translateX(100%); } }

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
}
.auth-container-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}
@media (min-width: 768px) {
    .auth-container-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }
}
.auth-tutorial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.tutorial-badge {
    display: inline-block;
    background: var(--primary-surface);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}
.auth-tutorial-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}
.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.step-num {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-text);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-desc strong {
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}
.step-desc p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.auth-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.auth-header svg { fill: var(--primary); margin-bottom: 10px; }
.auth-header h2 { font-size: 20px; margin-bottom: 4px; }

.navbar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.nav-titles {
    display: flex;
    flex-direction: column;
}
.nav-app-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}
.nav-page-badge {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}
.nav-actions { display: flex; gap: 6px; }

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.icon-btn:hover { background: var(--bg-hover); color: var(--text-primary); transform: translateY(-1px); }

.container { max-width: 920px; margin: 16px auto; padding: 0 16px; }
.page-view { display: none; animation: fadeIn 0.25s ease-out; }
.page-view.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}
.stat-title { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.stat-meta h3 { font-size: 22px; margin-top: 4px; }
.stat-icon-box { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.bg-accent { background: var(--primary-surface); color: var(--text-primary); }
.bg-success { background: rgba(16, 185, 129, 0.15); color: var(--status-success); }
.bg-danger { background: rgba(239, 68, 68, 0.15); color: var(--status-danger); }
.bg-warning { background: rgba(245, 158, 11, 0.15); color: var(--status-warning); }

.panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}
.panel-header { margin-bottom: 14px; }
.panel-header.space-between { display: flex; justify-content: space-between; align-items: center; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 14px; }
.input-group { display: flex; flex-direction: column; gap: 5px; }
.input-group.full-span { grid-column: 1 / -1; }
.input-group label { font-size: 12px; font-weight: 600; color: var(--text-secondary); }
input, select {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-surface);
}

.preview-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin-top: 6px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.preview-box img { width: 100%; height: 100%; object-fit: cover; }
.btn-remove-foto {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 14px;
}

.btn {
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.96); }
.btn-primary {
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: 0 4px 14px rgba(199, 255, 46, 0.3);
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: var(--bg-hover); color: var(--text-primary); }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-primary); }
.btn-block { width: 100%; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-danger-outline {
    border: 1px solid var(--status-danger);
    color: var(--status-danger);
    background: transparent;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}
.btn-danger-outline:hover { background: var(--status-danger); color: #fff; }

.search-box {
    position: relative;
    flex: 1 1 260px;
    display: flex;
    align-items: center;
}
.search-svg {
    position: absolute;
    left: 12px;
    color: var(--text-secondary);
}
.search-box input {
    width: 100%;
    padding-left: 38px;
    padding-right: 38px;
}
.btn-voice {
    position: absolute;
    right: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.btn-voice:hover { color: var(--text-primary); transform: scale(1.1); }
.btn-voice.listening {
    color: var(--primary-text);
    background: var(--primary);
    animation: voicePulse 1s infinite alternate;
}
@keyframes voicePulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); box-shadow: 0 0 10px var(--primary); }
}

.toolbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }

.batch-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-surface);
    border: 1px solid var(--primary);
    padding: 10px 16px;
    border-radius: var(--radius);
    margin-top: 12px;
}
.batch-buttons { display: flex; gap: 8px; }

.action-header-tools { display: flex; align-items: center; gap: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 12px; cursor: pointer; color: var(--text-secondary); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.inv-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}
.inv-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.inv-card.selected { border-color: var(--primary); background: var(--primary-surface); }
.card-header-meta { display: flex; gap: 12px; align-items: center; }
.card-select-checkbox { transform: scale(1.15); cursor: pointer; accent-color: var(--primary); }
.card-thumb { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--bg-hover); }
.card-info { flex: 1; }
.card-title { font-size: 15px; font-weight: 700; }
.card-code { font-size: 12px; color: var(--text-secondary); }
.card-price { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-top: 2px; }
.card-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge { font-size: 11px; padding: 4px 8px; border-radius: 6px; font-weight: 600; background: var(--bg-hover); color: var(--text-secondary); }
.badge-baik { background: rgba(16, 185, 129, 0.12); color: var(--status-success); }
.badge-ringan { background: rgba(245, 158, 11, 0.12); color: var(--status-warning); }
.badge-berat { background: rgba(239, 68, 68, 0.12); color: var(--status-danger); }
.badge-overdue { background: rgba(239, 68, 68, 0.15); color: var(--status-danger); font-weight: 700; animation: blink 1.5s infinite; }
.badge-warning { background: rgba(245, 158, 11, 0.16); color: var(--status-warning); font-weight: 700; }
@keyframes blink { 50% { opacity: 0.6; } }

.card-actions { display: flex; gap: 6px; justify-content: flex-end; border-top: 1px solid var(--border-color); padding-top: 10px; }

/* PENGATURAN VERTICAL LIST & SUB-HALAMAN */
.setting-page-header { margin-bottom: 20px; }
.setting-page-header h2 { font-size: 26px; font-weight: 800; }
.settings-vertical-menu { display: flex; flex-direction: column; gap: 12px; }
.setting-menu-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.setting-menu-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--bg-hover);
}
.menu-item-left { display: flex; align-items: center; gap: 14px; }
.menu-icon-box { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.menu-item-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.menu-chevron { font-size: 24px; font-weight: 600; color: var(--text-secondary); }

/* TOGGLES & STORAGE BOX */
.settings-toggle-list { display: flex; flex-direction: column; gap: 14px; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; }
.switch-input {
    appearance: none;
    width: 48px;
    height: 26px;
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background 0.2s ease;
}
.switch-input::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.switch-input:checked {
    background: var(--primary);
}
.switch-input:checked::after {
    transform: translateX(20px);
    background: var(--primary-text);
}

.storage-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.storage-box { background: var(--bg-hover); padding: 14px; border-radius: 12px; text-align: center; }
.storage-box h3 { margin-top: 6px; font-size: 18px; }

.about-app-card { text-align: center; padding: 16px; }
.about-logo { width: 65px; height: 65px; object-fit: contain; margin: 0 auto 12px; }
.about-details {
    text-align: left;
    background: var(--bg-hover);
    padding: 14px;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.snk-text-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.snk-text-box strong { color: var(--text-primary); }

/* FOOTER */
.app-footer {
    text-align: center;
    padding: 24px 0 10px;
    font-size: 12px;
    color: var(--text-secondary);
}
.app-footer strong { color: var(--text-primary); }

/* QR WATERMARK */
.qr-canvas-wrapper { display: flex; justify-content: center; margin-bottom: 10px; }
#qr-watermark-canvas { border: 1px solid var(--border-color); border-radius: 12px; background: #ffffff; }

/* FLOATING DOCK */
.bottom-dock-wrapper {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    pointer-events: none;
}
.bottom-dock-capsule {
    pointer-events: auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-float);
    border-radius: 999px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dock-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text-secondary);
    position: relative;
    outline: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dock-btn .ui-icon { transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.2s ease; }
.dock-label {
    display: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.dock-btn:hover { color: var(--text-primary); background: var(--bg-hover); transform: translateY(-2px); }
.dock-btn:hover .ui-icon { transform: scale(1.12); }
.dock-btn:active { transform: scale(0.92); }
.dock-btn.active {
    background: var(--text-primary);
    color: var(--bg-surface);
    padding: 10px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
[data-theme="dark"] .dock-btn.active {
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: 0 4px 18px rgba(199, 255, 46, 0.35);
}
.dock-btn.active .dock-label { display: inline-block; opacity: 1; transform: translateX(0); }
.dock-btn.active .ui-icon { transform: scale(1.05); }

.dock-action-circle {
    pointer-events: auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: 0 8px 24px rgba(199, 255, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.dock-action-circle:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 12px 28px rgba(199, 255, 46, 0.55); }
.dock-action-circle:active { transform: scale(0.92); }

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.65);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; padding: 16px;
}
.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    width: 100%; max-width: 420px;
    max-height: 90vh; overflow-y: auto;
}
.confirm-card { max-width: 340px; padding: 24px; text-align: center; }
.confirm-icon-box {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary-surface); color: var(--text-primary);
    margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
}
.modal-header { padding: 14px 18px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.modal-body { padding: 18px; }
.icon-btn-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-secondary); }
.theme-picker { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 6px; }
.btn-theme { padding: 8px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--bg-hover); color: var(--text-primary); cursor: pointer; }
.btn-theme.active { border-color: var(--primary); background: var(--primary-surface); color: var(--text-primary); font-weight: bold; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.table-responsive { width: 100%; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; text-align: left; }
.data-table th { background: var(--bg-hover); padding: 10px; color: var(--text-secondary); }
.data-table td { padding: 10px; border-bottom: 1px solid var(--border-color); }
.timeline { display: flex; flex-direction: column; gap: 10px; }
.timeline-item { display: flex; gap: 12px; padding: 10px; border-radius: 8px; background: var(--bg-hover); font-size: 13px; }
.timeline-time { font-size: 11px; color: var(--text-secondary); min-width: 75px; }

/* PRINT */
.print-paper { display: none; background: #fff; color: #000; padding: 20px; }
@media print {
    body { background: #fff !important; color: #000 !important; padding-bottom: 0; }
    .no-print, .bottom-dock-wrapper, .navbar, #splash-screen, .modal-overlay, #toast-container, .app-footer { display: none !important; }
    .container { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
    .page-view { display: none !important; }
    #page-laporan { display: block !important; }
    .print-paper { display: block !important; }
    .print-header { text-align: center; border-bottom: 2px solid #000; padding-bottom: 10px; margin-bottom: 20px; }
    .print-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
    .print-table th, .print-table td { border: 1px solid #000; padding: 8px; font-size: 12px; }
    .print-signatures { display: flex; justify-content: space-between; margin-top: 40px; padding: 0 40px; }
    .sign-box { text-align: center; width: 200px; font-size: 12px; }
    .sign-line { height: 60px; }
}

/* KOTAK DOWNLOAD APK DI TENTANG */
.apk-download-box {
    background: var(--bg-hover);
    border: 1px dashed var(--border-color);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}
