[x-cloak] { display: none !important; }
body { font-family: 'Inter', sans-serif; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Sidebar Active Items */
.sidebar-item-active { 
    color: #10b981; 
    background-color: #f8fcfb; 
    position: relative;
    font-weight: 600;
}
.sidebar-item-active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background-color: #10b981;
    border-radius: 4px 0 0 4px;
}
