/* custom.css - BN IntelHub ERP Polished Styling */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
html.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}
html.dark ::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 9999px;
}
html:not(.dark) ::-webkit-scrollbar-track {
    background: #f1f5f9;
}
html:not(.dark) ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

/* Glassmorphism utilities */
.dark .glass-panel {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.dark .glass-modal {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
}
.glass-modal {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
}

/* Print utilities */
@media print {
    .no-print {
        display: none !important;
    }
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    .print-container {
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
}
