/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout scoped styles - minimal with Tailwind */

/* Peer-checked mobile nav visibility */
.peer:checked ~ .peer-checked\:flex[b-xk1lb87mpx] {
    display: flex;
}

/* Mobile nav slide animation */
@keyframes slideIn-b-xk1lb87mpx {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.peer:checked ~ div > aside[b-xk1lb87mpx] {
    animation: slideIn-b-xk1lb87mpx 0.2s ease-out;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu scoped styles - Fluent Design System */

/* Navigation Link Base Styles - using ::deep for NavLink components */
[b-r5cza6ncpo] .fluent-nav-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    color: #424242;
    text-decoration: none;
    transition: all 0.15s ease-out;
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
}

[b-r5cza6ncpo] .fluent-nav-link:hover {
    background-color: #F5F5F5;
    text-decoration: none;
}

[b-r5cza6ncpo] .fluent-nav-link:active {
    background-color: #E0E0E0;
}

/* Active state for NavLink */
[b-r5cza6ncpo] .fluent-nav-link.active {
    background-color: rgba(0, 120, 212, 0.1);
    color: #0078D4;
    font-weight: 600;
}

[b-r5cza6ncpo] .fluent-nav-link.active svg {
    color: #0078D4;
}

/* Focus visible for accessibility */
[b-r5cza6ncpo] .fluent-nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #0078D4;
}

/* Icon styling */
[b-r5cza6ncpo] .fluent-nav-link svg {
    flex-shrink: 0;
    color: #616161;
    transition: color 0.15s ease-out;
    width: 1.25rem;
    height: 1.25rem;
}

[b-r5cza6ncpo] .fluent-nav-link:hover svg {
    color: #424242;
}

/* Fluent scrollbar */
.fluent-scrollbar[b-r5cza6ncpo]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.fluent-scrollbar[b-r5cza6ncpo]::-webkit-scrollbar-track {
    background: transparent;
}

.fluent-scrollbar[b-r5cza6ncpo]::-webkit-scrollbar-thumb {
    background-color: #C4C4C4;
    border-radius: 9999px;
}

.fluent-scrollbar[b-r5cza6ncpo]::-webkit-scrollbar-thumb:hover {
    background-color: #757575;
}
