/* Estilos específicos para la navegación lateral */
.nav-link-custom {
    color: #333;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.nav-link-custom:hover {
    color: #28a745;
    transform: translateX(5px);
}

.nav-link-custom.active {
    color: #28a745;
    font-weight: 600;
}

.nav-category {
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin: 1.5rem 0 0.75rem 0;
}

.nav-category:first-child {
    margin-top: 0;
}

.nav-icon {
    width: 24px;
    text-align: center;
    margin-right: 8px;
}

.badge-count {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .sidebar-nav {
        margin-bottom: 2rem;
    }
}