.mantine-Switch-root {
    cursor: pointer !important;
}

.table-purple th,
.table-purple thead th,
.table.table-purple thead th {
    background-color: rgba(156, 0, 191, 1) !important; /* Purple */
    color: white !important; /* Text color */
}

/* =============================================================================
   NAVIGATION - Active State & Hover Effects
   ============================================================================= */

/* Active nav link - prominent purple highlight */
.nav-link.active {
    background-color: rgba(156, 0, 191, 0.25) !important; /* Purple with transparency */
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 600 !important;
    position: relative;
}

/* Underline effect for active nav link - only on xl screens (matches navbar expand="xl" breakpoint) */
@media (min-width: 1200px) {
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background-color: #9C00BF; /* Purple underline */
        border-radius: 1px;
    }
}

/* Hover effect for nav links */
.nav-link:hover:not(.active) {
    background-color: rgba(156, 0, 191, 0.1) !important; /* Subtle purple hover */
    border-radius: 6px;
}

/* Logout button styling */
#signout-button {
    transition: all 0.2s ease;
}

#signout-button:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
    color: white !important;
    cursor: pointer;
}