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

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

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

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

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

/* /Components/Shared/UpdateAvailableDetector.razor.rz.scp.css */
/* PWA Update Banner Styles - NetCal Theme */

.pwa-update-banner[b-bba3gitk3r] {
    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-bba3gitk3r] {
    top: 0;
    pointer-events: auto;
}

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

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

.update-text[b-bba3gitk3r] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.update-text strong[b-bba3gitk3r] {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.update-subtext[b-bba3gitk3r] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    line-height: 1.4;
}

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

.btn-update[b-bba3gitk3r] {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    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(255, 107, 53, 0.3);
    white-space: nowrap;
}

.btn-update:hover:not(:disabled)[b-bba3gitk3r] {
    background: linear-gradient(135deg, #ff7f50 0%, #ffa500 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    transform: translateY(-1px);
}

.btn-update:active:not(:disabled)[b-bba3gitk3r] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

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

.btn-dismiss[b-bba3gitk3r] {
    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;
    flex-shrink: 0;
}

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

.btn-dismiss:active:not(:disabled)[b-bba3gitk3r] {
    background: rgba(255, 255, 255, 0.15);
}

.btn-dismiss:disabled[b-bba3gitk3r] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Spinner Animation */
.spinner[b-bba3gitk3r] {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-bba3gitk3r 0.8s linear infinite;
    flex-shrink: 0;
}

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

/* Icon Sizing */
.btn-update i[b-bba3gitk3r],
.btn-dismiss i[b-bba3gitk3r] {
    font-size: 1rem;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 640px) {
    .pwa-update-banner[b-bba3gitk3r] {
        padding: 0.75rem;
    }

    .pwa-update-banner-content[b-bba3gitk3r] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        align-items: stretch;
    }

    .update-text[b-bba3gitk3r] {
        text-align: center;
    }

    .update-actions[b-bba3gitk3r] {
        justify-content: center;
        width: 100%;
    }

    .btn-update[b-bba3gitk3r] {
        flex: 1;
        justify-content: center;
    }

    .update-subtext[b-bba3gitk3r] {
        font-size: 0.8125rem;
    }
}

/* Dark mode enhancement (if needed) */
@media (prefers-color-scheme: dark) {
    .pwa-update-banner-content[b-bba3gitk3r] {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5),
                    0 2px 8px rgba(0, 0, 0, 0.3);
    }
}




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

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

.content[b-peh1iyn1ic] {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-peh1iyn1ic], article[b-peh1iyn1ic] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kyd32nye1u] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.bi[b-kyd32nye1u] {
    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-kyd32nye1u] {
    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");
}

.bi-plus-square-fill-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-calendar-event-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-event' viewBox='0 0 16 16'%3E%3Cpath d='M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-list-ul-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-ul' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E");
}

.bi-graph-up-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-graph-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z'/%3E%3C/svg%3E");
}

.bi-gear-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319z'/%3E%3C/svg%3E");
}

.bi-question-circle-fill-nav-menu[b-kyd32nye1u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-question-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.496 6.033h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286a.237.237 0 0 0 .241.247zm2.325 6.443c.61 0 1.029-.394 1.029-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94 0 .533.425.927 1.009.927z'/%3E%3C/svg%3E");
}

.nav-separator[b-kyd32nye1u] {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 1rem;
}

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

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

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

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

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

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

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

    .collapse[b-kyd32nye1u] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-kyd32nye1u] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
}
/* /Shared/AccessControl.razor.rz.scp.css */
.bi[b-h3x8me685e] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-box-arrow-in-right-nav-menu[b-h3x8me685e] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box-arrow-in-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 3.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 0-1 0v2A1.5 1.5 0 0 0 6.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-8A1.5 1.5 0 0 0 5 3.5v2a.5.5 0 0 0 1 0v-2z'/%3E%3Cpath fill-rule='evenodd' d='M11.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H1.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
}

.bi-box-arrow-right-nav-menu[b-h3x8me685e] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
}






