/* Navigation Offcanvas Component Styles - Simplified */
.offcanvas-custom {
    width: 280px !important;
    background: linear-gradient(180deg, rgba(104, 129, 175, 0.85) 0%, rgba(74, 102, 186, 0.9) 100%) !important;
}

.nav-menu-item {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    margin: 4px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-menu-item:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.nav-menu-item i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
    text-align: center;
    color: white !important;
}

.nav-menu-badge {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

/* Separatore semplice per il menu */
.nav-menu-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 12px 16px;
}

/* Footer styles semplici */
.offcanvas-footer-custom {
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
}