/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout — most styling is handled by Tailwind classes.
   Only overrides that Tailwind CDN cannot express at build time go here. */

/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Active nav link state — Blazor NavLink adds .active class */
[b-xxdyssokus] a.active {
    color: #2563eb; /* blue-600 */
    background-color: #eff6ff; /* blue-50 */
    border-left-color: #2563eb; /* blue-600 */
    font-weight: 600;
}

[b-xxdyssokus] a {
    color: #4b5563; /* gray-600 */
    border-left-color: transparent;
    text-decoration: none;
}

[b-xxdyssokus] a:hover {
    background-color: #f9fafb; /* gray-50 */
}

