@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
}

/* Kustomisasi Navigasi Sidebar (Tema Hijau / Emerald) */
.active-nav {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.4);
}

.alarm-row {
    background-color: #fff1f2 !important;
    border-left: 4px solid #e11d48;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Custom Scrollbar untuk Tabel / List */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}