/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    /* UKURAN A4 (Standard ISO 216) */
    --page-width: 210mm;
    --page-height: 297mm;
    --page-padding: 12mm;
    --content-height: calc(var(--page-height) - (var(--page-padding) * 2));
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
    font-family: 'Inter', sans-serif;
    background: #eef2f6;
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(56, 189, 248, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
    margin: 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1e293b;
    min-width: 1200px;
    overflow-x: auto;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   PAGE CONTAINER (A4)
   ============================================ */
.page-a4 {
    width: var(--page-width);
    height: var(--page-height);
    min-height: var(--page-height);
    max-height: var(--page-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin: 0 auto 30px auto;
    page-break-after: always;
    break-after: page;
}

.page-a4 > main,
.page-a4 > header,
.page-a4 > footer {
    flex-shrink: 0;
}

.page-a4 > main {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.page-a4.allow-scroll main {
    overflow-y: auto;
    overflow-x: hidden;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header-modern {
    position: relative;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.header-mini {
    position: relative;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.9);
}

.header-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('/img/keraton.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    z-index: 0;
    pointer-events: none;
}

.header-mini .header-bg-image {
    width: 40%;
    opacity: 0.1;
}

/* ============================================
   GLASS COMPONENTS
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.chart-wrapper {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255,255,255,0.8);
}

/* ============================================
   TITLE & HEADER STYLES
   ============================================ */
.title-clean-header {
    background: transparent;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
}

.title-clean-header::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

/* ============================================
   TABLE STYLES
   ============================================ */
.table-glass {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 10px;
}

.table-glass thead th {
    text-align: left;
    padding: 10px 12px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.5);
}

.table-glass tbody td {
    padding: 8px 12px;
    color: #334155;
    border-bottom: 1px solid rgba(0,0,0,0.02);
    font-weight: 500;
}

.table-glass tbody tr:last-child td {
    border-bottom: none;
}

.table-glass tbody tr:hover td {
    background: rgba(255,255,255,0.4);
}

/* Disease table rows */
.table-disease-row {
    transition: all 0.2s ease;
}

.table-disease-row.up {
    background: linear-gradient(90deg, rgba(254, 226, 226, 0.4) 0%, rgba(254, 226, 226, 0.1) 100%);
    border-left: 3px solid #f87171;
}

.table-disease-row.down {
    background: linear-gradient(90deg, rgba(209, 250, 229, 0.4) 0%, rgba(209, 250, 229, 0.1) 100%);
    border-left: 3px solid #34d399;
}

.table-disease-row.flat {
    background: linear-gradient(90deg, rgba(241, 245, 249, 0.6) 0%, rgba(241, 245, 249, 0.1) 100%);
    border-left: 3px solid #94a3b8;
}

.table-disease-row:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateX(2px);
}

.table-disease-row td {
    padding: 10px 12px;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

/* ============================================
   STATUS INDICATORS
   ============================================ */
.status-dot {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.trend-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.trend-icon.up {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.trend-icon.down {
    background-color: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.trend-icon.flat {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* ============================================
   FLOATING NAVIGATION - MODERN GLASS
   ============================================ */
.page-nav {
    position: fixed;
    top: 40px;
    left: 5px;
    z-index: 9999;
    font-family: 'Plus Jakarta Sans', sans-serif;
    animation: navSlideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes navSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.nav-box {
    width: 200px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 
        0 20px 40px -10px rgba(0,0,0,0.1), 
        0 0 0 1px rgba(255,255,255,0.4) inset;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-box:hover {
    box-shadow: 
        0 30px 60px -12px rgba(99, 102, 241, 0.25), 
        0 0 0 1px rgba(255,255,255,0.6) inset;
    transform: translateY(-2px);
}

.nav-header {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
}

.nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
    box-shadow: 
        0 4px 14px -2px rgba(99, 102, 241, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.nav-icon-main {
    width: 20px;
    height: 20px;
    color: white;
    stroke-width: 2.5;
}

.nav-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.nav-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #1e293b;
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.nav-toggle-btn {
    display: none;
}

.nav-content-wrapper {
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
    scroll-behavior: auto; /* Disable smooth scroll di nav untuk menghindari konflik */
}

.nav-content-wrapper::-webkit-scrollbar {
    width: 4px;
}

.nav-content-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.nav-content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 60vh;
}

.nav-item {
    width: 100%;
    margin-bottom: 6px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    text-decoration: none;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-num {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.nav-text {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.1);
    transform: translateX(4px);
}

.nav-link:hover .nav-num {
    background: #fff;
    border-color: #818cf8;
    color: #4f46e5;
    transform: scale(1.05);
}

.nav-link.active {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 2px 6px -1px rgba(99, 102, 241, 0.1);
}

.nav-link.active .nav-num {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: white;
    box-shadow: 0 4px 10px -3px rgba(99, 102, 241, 0.5);
}

.nav-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   PRINT BUTTON
   ============================================ */
.print-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.print-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 
        0 10px 25px -5px rgba(99, 102, 241, 0.4),
        0 8px 10px -6px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.print-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 20px 35px -5px rgba(99, 102, 241, 0.5),
        0 10px 15px -3px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
}

.print-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px -3px rgba(99, 102, 241, 0.3);
}

.print-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.print-btn:hover .print-icon {
    transform: rotate(-12deg) scale(1.1);
}

.print-text {
    position: relative;
    z-index: 2;
}

.print-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.7s;
    z-index: 1;
}

.print-btn:hover .print-shine {
    left: 100%;
}

.print-tooltip {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.print-float-container:hover .print-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-arrow {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.print-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #6366f1);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(8px);
}

.print-btn:hover::before {
    opacity: 0.6;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.3; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-pulse {
    animation: pulse-slow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   UTILITY STYLES
   ============================================ */
.debug-info {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.chart-container {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Print Styles */
@media print {
    @page {
        size: A4;
        margin: 0;
    }
    
    body {
        background: white !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-width: unset !important;
        display: block !important;
        print-color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
    }
    
    .page-a4 {
        width: var(--page-width) !important;
        min-height: var(--page-height) !important;
        height: auto !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        page-break-after: always !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        overflow: hidden !important;
    }
    
    .page-nav {
        display: none !important;
    }
    
    .glass-card, .chart-wrapper, table {
        break-inside: avoid !important;
        page-break-inside: avoid !important;
    }
    
    .no-print, #yearDropdown, .print-tooltip {
        display: none !important;
    }
    
    .chart-page-2 {
        background-color: #ffffff !important;
        background: #ffffff !important;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    .idl-interpret-card {
        background-color: #ffffff !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1) !important;
    }
    
    .idl-interpret-card .bg-white.rounded-2xl,
    .idl-interpret-card .col-span-1 > div {
        background-color: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05) !important;
    }
    
    .idl-interpret-card .absolute[class*="blur-"] {
        display: none !important;
    }
    
    #campakChart {
        background-color: transparent !important;
    }
    
    .chart-wrapper:has(#campakChart) {
        background-color: #ffffff !important;
        background-image: none !important;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
    }
    
    canvas {
        background-color: transparent !important;
    }
    
    #top5DiseasesChart,
    #campakChart {
        background-color: #ffffff !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }
    
    #idlBugisChart,
    #idlTanjungHilirChart {
        background-color: #ffffff !important;
        background: #ffffff !important;
        padding: 8px !important;
    }
    
    .col-span-1 .glass-card:has(.text-5xl.font-black) {
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .table-disease-row.up {
        background: #fef2f2 !important;
        border-left: 3px solid #ef4444 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .table-disease-row.down {
        background: #ecfdf5 !important;
        border-left: 3px solid #10b981 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .table-disease-row.flat {
        background: #f8fafc !important;
        border-left: 3px solid #64748b !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .trend-icon {
        print-color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
    }
    
    .trend-icon.up {
        background-color: #fee2e2 !important;
        color: #dc2626 !important;
        border: 1px solid #fecaca !important;
    }
    
    .trend-icon.down {
        background-color: #d1fae5 !important;
        color: #059669 !important;
        border: 1px solid #a7f3d0 !important;
    }
    
    .trend-icon.flat {
        background-color: #f1f5f9 !important;
        color: #64748b !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    #btnAnalyzeAI.print-keep {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        print-color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        color: #334155 !important;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    }
    
    #btnYearFilter {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: none !important;
        color: #334155 !important;
    }
    
    #btnYearFilter svg {
        color: #64748b !important;
    }
    
    #btnYearFilter + div span[class*="bg-indigo-50"],
    .title-clean-header .bg-indigo-50,
    .title-clean-header .border-indigo-100 {
        background-color: #eef2ff !important;
        border: 1px solid #c7d2fe !important;
        box-shadow: none !important;
        print-color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
    }
}

/* ============================================
   NAVIGATION VISIBILITY - DESKTOP ONLY
   ============================================ */

/* Sembunyikan navigasi di layar kecil (tablet dan mobile) */
@media screen and (max-width: 1100px) {
    .page-nav {
        display: none !important;
    }
}

/* Tampilkan navigasi hanya di layar besar (desktop) */
@media screen and (min-width: 1101px) {
    .page-nav {
        display: block !important;
    }
}

/* UPDATE BAGIAN INI DI CSS PALING BAWAH */
        @media screen and (max-width: 900px) {
            body {
                /* 1. Zoom out agar muat (sesuaikan angka ini jika kurang pas) */
                /*zoom: 0.60; */
                
                /* 2. KUNCI: Paksa lebar body SAMA PERSIS dengan lebar kertas A4 (210mm) */
                min-width: 210mm !important; 
                width: 210mm !important;
                
                /* 3. Hapus margin/padding samping body agar kertas mentok ke pinggir */
                margin: 0 auto !important; 
                padding: 30px 0 !important; /* Hanya padding atas bawah */
                
                /* Reset display flex agar centering tidak membuat gap samping */
                display: block !important; 
                overflow-x: hidden; /* Mencegah geser kanan-kiri */
            }

            .page-a4 {
                /* Pastikan kertas berada di tengah */
                margin: 0 auto 30px auto !important;
                
                /* Opsional: Mematikan border radius di HP agar terlihat lebih 'native' */
                /* border-radius: 0 !important; */ 
            }

            /* Tombol cetak diperbesar untuk jari */
            .no-print button {
                transform: scale(1.8);
                transform-origin: bottom right;
                bottom: 20px !important;
                right: 20px !important;
            }
        }
