/**
 * Remove all outlines and borders from interactive elements
 * This file aggressively removes outlines to ensure clean UI
 */

/* Global outline removal */
button,
button:focus,
button:active,
button:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Specific component overrides */
.btn,
.btn:focus,
.btn:active,
.btn:focus-visible,
.theme-toggle,
.theme-toggle:focus,
.theme-toggle:active,
.theme-toggle:focus-visible,
.navbar-user button,
.navbar-user button:focus,
.navbar-user button:active,
.navbar-user button:focus-visible,
#logout-btn,
#logout-btn:focus,
#logout-btn:active,
#logout-btn:focus-visible,
#theme-toggle,
#theme-toggle:focus,
#theme-toggle:active,
#theme-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove border from buttons that shouldn't have it */
#logout-btn,
.theme-toggle,
.navbar-user button {
    border: none !important;
}

/* Login page theme toggle */
.theme-toggle-login-inline,
.theme-toggle-login-inline:focus,
.theme-toggle-login-inline:active,
.theme-toggle-login-inline:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
