/* SIDEBAR FOUNDATION */
.slab-sidebar {
    width: 260px;
    background: #0f172a;
    position: fixed;
    height: 100vh;
    padding: 20px;
    border-right: 1px solid rgba(59,130,246,.15);
}

.slab-sidebar-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.slab-sidebar-logo {
    width: 36px;
    height: 36px;
    background: #2563eb;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(37,99,235,.4);
}

.slab-sidebar-nav a {
    display: block;
    padding: 12px 14px;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 6px;
    transition: .2s;
}

.slab-sidebar-nav a:hover {
    background: rgba(37,99,235,.15);
    color: #fff;
}

.slab-sidebar-nav a.active {
    background: rgba(37,99,235,.25);
    color: #fff;
}