/*==========================================================
    GLOBAL - Accessibilità (SOLO Tasto TAB)
============================================================*/

/* 1. Reset totale: rimuove l'outline di default e le ombre per tutti (mouse compreso) */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* 2. Mostra il bordo rosso SOLO se l'utente sta usando il TAB */
/* La classe .user-is-tabbing viene gestita dal JavaScript */
body.user-is-tabbing *:focus {
    outline: 3px solid #f00 !important;
    outline-offset: 2px;
}

/* Utilità per overflow */
.accessible-overflow {
    overflow: visible;
}
