/* assets/css/style.css */
body { background-color: #f8f9fa; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Sidebar Hover Mode Desktop */
@media (min-width: 992px) {
    .sidebar {
        position: fixed;
        left: -250px; /* Tersembunyi di luar layar */
        width: 250px;
        height: 100vh;
        background: #fff;
        transition: left 0.3s ease;
        z-index: 1040;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    /* Area pemicu transparan di sebelah kiri */
    .sidebar-trigger {
        position: fixed;
        left: 0; top: 0;
        width: 15px; height: 100vh;
        z-index: 1041;
    }
    .sidebar-trigger:hover + .sidebar, .sidebar:hover { left: 0; /* Muncul saat dihover */ }
}

/* Sticky elemen */
.navbar-sticky { position: sticky; top: 0; z-index: 1030; }
.footer-sticky { position: fixed; bottom: 0; width: 100%; z-index: 1030; }

/* Mode Cetak (Print) Laporan */
@media print {
    .navbar, .sidebar, .footer-sticky, .btn, .accordion, .alert { display: none !important; }
    .container { margin-top: 0 !important; padding-top: 0 !important; max-width: 100% !important; }
    .card { border: none !important; box-shadow: none !important; border-bottom: 1px solid #ccc !important; border-radius: 0 !important; margin-bottom: 1rem !important;}
    body { background-color: white !important; font-size: 12px; }
}