/* /Components/Shared/AppFooter.razor.rz.scp.css */
.app-footer[b-s42nige7vz] {
    margin-top: auto;
    background-color: #f7f7f7;
    border-top: 1px solid #d6d5d5;
    padding: 1rem 2rem;
    width: 100%;
}

.footer-content[b-s42nige7vz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left[b-s42nige7vz],
.footer-right[b-s42nige7vz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version[b-s42nige7vz] {
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 640.98px) {
    .app-footer[b-s42nige7vz] {
        padding: 1rem;
    }
    
    .footer-content[b-s42nige7vz] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* /Components/Shared/UpdateAvailableDetector.razor.rz.scp.css */
.pwa-update-banner[b-l8xpy49xlu] {
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pwa-update-banner.visible[b-l8xpy49xlu] {
    top: 0;
    pointer-events: auto;
}

.pwa-update-banner-content[b-l8xpy49xlu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    width: 100%;
    animation: slideInBounce-b-l8xpy49xlu 0.5s ease-out;
}

@keyframes slideInBounce-b-l8xpy49xlu {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.update-text[b-l8xpy49xlu] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.update-text strong[b-l8xpy49xlu] {
    font-size: 1rem;
    font-weight: 600;
}

.update-subtext[b-l8xpy49xlu] {
    font-size: 0.875rem;
    opacity: 0.9;
}

.update-actions[b-l8xpy49xlu] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-update[b-l8xpy49xlu] {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-update:hover:not(:disabled)[b-l8xpy49xlu] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-update:disabled[b-l8xpy49xlu] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-dismiss[b-l8xpy49xlu] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.625rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-dismiss:hover:not(:disabled)[b-l8xpy49xlu] {
    background: rgba(255, 255, 255, 0.2);
}

.spinner[b-l8xpy49xlu] {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-l8xpy49xlu 0.8s linear infinite;
}

@keyframes spin-b-l8xpy49xlu {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .pwa-update-banner-content[b-l8xpy49xlu] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .update-text[b-l8xpy49xlu] {
        text-align: center;
    }
    
    .update-actions[b-l8xpy49xlu] {
        width: 100%;
        justify-content: center;
    }
    
    .btn-update[b-l8xpy49xlu] {
        flex: 1;
        justify-content: center;
    }
}

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-1lacqbsluj] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-1lacqbsluj] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar[b-1lacqbsluj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-1lacqbsluj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-1lacqbsluj]  a, .top-row[b-1lacqbsluj]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-1lacqbsluj]  a:hover, .top-row[b-1lacqbsluj]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-1lacqbsluj]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-1lacqbsluj] {
        justify-content: space-between;
    }

    .top-row[b-1lacqbsluj]  a, .top-row[b-1lacqbsluj]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-1lacqbsluj] {
        flex-direction: row;
    }

    .sidebar[b-1lacqbsluj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-1lacqbsluj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-1lacqbsluj]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-1lacqbsluj], article[b-1lacqbsluj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4dd4g6za94] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-4dd4g6za94] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-4dd4g6za94] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-4dd4g6za94] {
    font-size: 1.1rem;
}

.bi[b-4dd4g6za94] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-4dd4g6za94] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-4dd4g6za94] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-4dd4g6za94] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-4dd4g6za94] {
        padding-bottom: 1rem;
    }

    .nav-item[b-4dd4g6za94]  a {
        color: #d7d7d7;
        display: flex;
        align-items: center;
        line-height: 3rem;
        border-radius: 4px;
        height: 3rem;
    }

.nav-item[b-4dd4g6za94]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-4dd4g6za94]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-4dd4g6za94] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-4dd4g6za94] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-4dd4g6za94] {
        display: none;
    }

    .nav-scrollable[b-4dd4g6za94] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* /Shared/AccessControl.razor.rz.scp.css */
.access-control-container[b-c4dvtjyb8x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 2rem;
}

.btn-login[b-c4dvtjyb8x] {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: #0d6efd;
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
}

.btn-login:hover[b-c4dvtjyb8x] {
    background: #0b5ed7;
}

/* /Shared/AuthMigrationModal.razor.rz.scp.css */
/* Scoped styles for Auth Migration Modal */

/* Ensure modal appears on top */
[b-htkygkerpu] .modal {
    z-index: 99999 !important;
}

[b-htkygkerpu] .modal-backdrop {
    z-index: 99998 !important;
}

/* Smooth progress bar animation */
[b-htkygkerpu] .progress-bar {
    transition: width 0.3s ease-in-out;
}

