/* ================================
   GLOBAL BUTTON HOVER FIX (SAFE)
   ================================ */

/* REAL Bootstrap buttons ONLY */
button.btn:hover,
button.btn:focus,
input[type="submit"].btn:hover,
a.btn:hover {
    color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.08) !important;
    border-color: #ff0000 !important;
}

/* Outline buttons */
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-success:hover,
.btn-outline-danger:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-dark:hover {
    color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.08) !important;
    border-color: #ff0000 !important;
}

/* Dropdown items */
.dropdown-item:hover,
.dropdown-item:focus {
    color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.08) !important;
}

/* Navbar links */
.nav-link:hover {
    color: #ff0000 !important;
}

/* Sidebar links */
.sidebar .nav-link:hover,
.sidebar a:hover {
    color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.08) !important;
}

/* Table action buttons ONLY */
.table a.btn:hover,
.table button.btn:hover {
    color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.08) !important;
}

/* Icon hover visibility */
.btn:hover i,
.nav-link:hover i {
    color: #ff0000 !important;
}
