/* ==========================================
   SIMAN ENTERPRISE - GLOBAL CSS
   Mengatur Scrollbar & Background Patterns
========================================== */

/* Kustomisasi Scrollbar Elegan (Mac-OS Style) */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Kustomisasi Scrollbar untuk Dropdown Select */
select::-webkit-scrollbar {
    width: 6px;
}
select::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Pattern Background untuk Halaman Login */
.bg-pattern {
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Mematikan outline default browser saat elemen di-klik */
input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}

/* Utility untuk menyembunyikan elemen saat proses cetak PDF bawaan browser */
@media print {
    body * {
        visibility: hidden;
    }
    #print-section, #print-section * {
        visibility: visible;
    }
    #print-section {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}