/* /Components/Layout/MainLayout.razor.rz.scp.css */
    .app-layout[b-1bi7ahbwpw] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f5f5f5;
}

.app-header[b-1bi7ahbwpw] {
    height: 64px;
    background-color: #dcdcdc; /* Light gray header background */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
}

.header-left[b-1bi7ahbwpw] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo[b-1bi7ahbwpw] {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    margin-right: 1rem;
}

.logo-icon[b-1bi7ahbwpw] {
    margin-right: 0.5rem;
    color: #0056b3;
}

.logo-text[b-1bi7ahbwpw] {
    color: #003366;
}

.logo-highlight[b-1bi7ahbwpw] {
    color: #4caf50; /* Green for RAI */
}

.header-right[b-1bi7ahbwpw] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #666;
}

.search-box[b-1bi7ahbwpw] {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.search-box input[b-1bi7ahbwpw] {
    border: none;
    background: transparent;
    outline: none;
    margin-left: 0.5rem;
    color: #666;
}

.user-profile[b-1bi7ahbwpw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.app-body[b-1bi7ahbwpw] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.sidebar[b-1bi7ahbwpw] {
    width: 280px;
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

main[b-1bi7ahbwpw] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: #ffffff;
    margin: 1rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Button overrides for header */
.app-header .btn-link[b-1bi7ahbwpw] {
    color: #666 !important;
    text-decoration: none;
    padding: 0.25rem;
}

.app-header .btn-link:hover[b-1bi7ahbwpw] {
    color: #333 !important;
    background-color: rgba(0,0,0,0.05);
    border-radius: 50%;
}

#blazor-error-ui[b-1bi7ahbwpw] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-1bi7ahbwpw] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-scrollable[b-rhc1t4bs7y] {
    height: 100%;
    overflow-y: auto;
    padding-top: 1rem;
}

.nav-section[b-rhc1t4bs7y] {
    margin-bottom: 0.5rem;
}

.nav-section-header[b-rhc1t4bs7y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-section-header:hover[b-rhc1t4bs7y] {
    background-color: #f0f0f0;
}

.section-title[b-rhc1t4bs7y] {
    flex: 1;
}

.section-icon[b-rhc1t4bs7y] {
    font-size: 0.7rem;
    color: #0056b3;
}

.nav-section-items[b-rhc1t4bs7y] {
    padding-left: 0;
}

.nav-item[b-rhc1t4bs7y] {
    font-size: 0.85rem;
}

.nav-item[b-rhc1t4bs7y]  .nav-link {
    color: #555;
    padding: 0.4rem 1rem 0.4rem 2rem; /* Indent items */
    border-radius: 0;
    transition: all 0.2s;
}

.nav-item[b-rhc1t4bs7y]  .nav-link:hover {
    background-color: #e9ecef;
    color: #0056b3;
}

.nav-item[b-rhc1t4bs7y]  .nav-link.active {
    background-color: #e3f2fd;
    color: #0056b3;
    font-weight: 500;
    border-left: 3px solid #0056b3;
}
