/* style.css - Standard ERP Edition */
:root {
    --primary-color: #1e3a8a;
    --accent-color: #3b82f6;
    --nv-blue-dark: #0f172a;
    --nv-accent: #3b82f6;
    --nv-text-dim: #94a3b8;
}

/* SIDEBAR & LAYOUT ESSENTIALS */
.quantum-sidebar {
    background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-item-quantum {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.2s;
    width: 100%;
    text-align: left;
}

.sidebar-item-quantum:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-item-quantum.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: inset 4px 0 0 #FACC15;
}

/* CUSTOM SCROLLBARS */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* MODAL & UI ESSENTIALS */
#global-modal {
    transition: opacity 0.3s ease;
}

.nv-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* OTHER UTILITIES */
.text-label {
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 2px;
}

/* NAV CARDS (for accounting hub etc) */
.nav-card-q {
    background: white;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-card-q:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 1.5rem;
}

.card-label {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
}