/* InsightPulse Custom Styles */

/* Override Bootstrap text-secondary for better contrast on dark background */
.text-secondary {
    color: #adb5bd !important; /* Lighter grey for better visibility */
}

/* Navigation Menu Section Headers */
.sidebar-header {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-header i {
    opacity: 0.7;
}

/* Add spacing between navigation sections */
.sidebar-nav .sidebar-header:not(:first-child) {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Highlight admin section */
.sidebar-nav .sidebar-header:has(.fa-shield-alt) {
    color: #f0ad4e;
}

/* User features section */
.sidebar-nav .sidebar-header:has(.fa-user) {
    color: #5bc0de;
}

/* Active link styling */
.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #5bc0de;
}

/* Hover effect for sidebar items */
.sidebar-item .sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Ensure sidebar remains sticky even after Blazor SPA navigation */
html[data-sidebar-behavior=sticky] .sidebar .sidebar-content {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
