.nav-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: 12px;
    color: #475569;
    font-weight: 500;
    transition: all .2s ease;
}

.nav-link:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.nav-link.active {
    background: #2563eb;
    color: #fff;
    font-weight: 600;
}

.nav-link.active i {
    color: #fff;
}