/* ========================================================================
   MEDLIGHT - Area Riservata
   Stili custom (estendono Tailwind CSS)
   ======================================================================== */

/* --- Tab system per la dashboard --- */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Sidebar nav item attivo --- */
.nav-item.active {
    background-color: #6f9ed4; /* MEDLIGHT azure */
    color: #ffffff;
}
.nav-item.active i { color: #ffffff; }

/* --- Step indicator (registrazione, recupero password) --- */
.step-content { display: block; }
.step-content.hidden { display: none; }

/* --- Animazione fade-in per gli alert --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
#alert:not(.hidden) {
    animation: fadeIn 0.25s ease-out;
}

/* --- Spinner integrato per i pulsanti durante il loading --- */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* --- Stile coerente per gli scrollbar (webkit) --- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* --- Stampa: nasconde elementi non utili --- */
@media print {
    nav, footer, .no-print { display: none !important; }
    body { background: white !important; }
}