/* /Shared/LoadingSpinner.razor.rz.scp.css */
.spinner-overlay[b-qk25r554a0] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 2rem;
}

.spinner-overlay.full-page[b-qk25r554a0] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    height: 100vh;
}

.modern-spinner[b-qk25r554a0] {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin-b-qk25r554a0 1s linear infinite;
}

.loading-text[b-qk25r554a0] {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
}

@keyframes spin-b-qk25r554a0 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-ogk2oqqx4r] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-ogk2oqqx4r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar[b-ogk2oqqx4r] {
    background-color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.top-row[b-ogk2oqqx4r] {
    background-color: var(--primary-color);
    border-bottom: none;
    justify-content: space-between;
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.app-title[b-ogk2oqqx4r] {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-row[b-ogk2oqqx4r]  a, .top-row[b-ogk2oqqx4r]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.top-row[b-ogk2oqqx4r]  a:hover, .top-row[b-ogk2oqqx4r]  .btn-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

.top-row[b-ogk2oqqx4r]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.content[b-ogk2oqqx4r] {
    flex: 1;
    padding: 2rem;
    background-color: var(--background-light);
}

.footer[b-ogk2oqqx4r] {
    padding: 1rem;
    background-color: var(--background-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-ogk2oqqx4r] {
        display: none;
    }

    .top-row[b-ogk2oqqx4r] {
        justify-content: space-between;
        padding: 0 1rem;
    }

    .top-row[b-ogk2oqqx4r]  a, .top-row[b-ogk2oqqx4r]  .btn-link {
        margin-left: 0;
    }
    
    .content[b-ogk2oqqx4r] {
        padding: 1rem;
    }
}

@media (min-width: 641px) {
    .page[b-ogk2oqqx4r] {
        flex-direction: row;
    }

    .sidebar[b-ogk2oqqx4r] {
        width: 280px;
        min-width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ogk2oqqx4r] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ogk2oqqx4r]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .content[b-ogk2oqqx4r] {
        padding: 2rem;
        overflow-x: auto;
    }
    
    .content[b-ogk2oqqx4r]  table {
        overflow-x: auto;
        display: block;
        max-width: 100%;
    }
}
/* /Shared/MainMenu.razor.rz.scp.css */
.navbar-toggler[b-m0tbhb5thn] {
    background-color: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

.navbar-toggler:focus[b-m0tbhb5thn] {
    outline: none;
    box-shadow: none;
}

.top-row[b-m0tbhb5thn] {
    height: 4rem;
    background-color: var(--primary-color);
    padding: 0 1rem;
}

.navbar-brand[b-m0tbhb5thn] {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-brand img[b-m0tbhb5thn] {
    max-height: 45px;
    width: auto;
}

.bi[b-m0tbhb5thn] {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.nav-item[b-m0tbhb5thn] {
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
}

.nav-item:first-of-type[b-m0tbhb5thn] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-m0tbhb5thn] {
    padding-bottom: 1rem;
}

.nav-item[b-m0tbhb5thn]  a {
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    padding-left: 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item[b-m0tbhb5thn]  a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.nav-item[b-m0tbhb5thn]  a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-m0tbhb5thn] {
        display: none;
    }

    .collapse[b-m0tbhb5thn] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
