/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* ── Auth page shell ── */
.auth-page[b-5xpfymfygm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f0f0f8;
    font-family: Roboto, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
    .auth-page[b-5xpfymfygm] { background: #0e0e1a; }
}

/* ── Card ── */
.auth-card[b-5xpfymfygm] {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 40px 32px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}

@media (prefers-color-scheme: dark) {
    .auth-card[b-5xpfymfygm] {
        background: #1a1a2e;
        box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    }
}

@media (max-width: 480px) {
    .auth-card[b-5xpfymfygm] { padding: 32px 24px 24px; border-radius: 14px; }
}

/* ── Brand ── */
.auth-brand[b-5xpfymfygm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.auth-brand__icon[b-5xpfymfygm] {
    width: 38px;
    height: 38px;
    background: #5C6BC0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-brand__name[b-5xpfymfygm] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5C6BC0;
    letter-spacing: -0.02em;
}

/* ── Headings ── */
.auth-heading[b-5xpfymfygm] {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 6px;
    color: #1a1a2e;
}

.auth-subheading[b-5xpfymfygm] {
    font-size: 0.875rem;
    text-align: center;
    margin: 0 0 28px;
    color: #666;
}

@media (prefers-color-scheme: dark) {
    .auth-heading[b-5xpfymfygm] { color: #e8e8f0; }
    .auth-subheading[b-5xpfymfygm] { color: #9090a8; }
}

/* ── Alert ── */
.auth-alert[b-5xpfymfygm] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.auth-alert--error[b-5xpfymfygm] {
    background: rgba(239, 83, 80, 0.1);
    color: #c62828;
    border: 1px solid rgba(239, 83, 80, 0.25);
}

.auth-alert--success[b-5xpfymfygm] {
    background: rgba(66, 165, 100, 0.1);
    color: #1b5e20;
    border: 1px solid rgba(66, 165, 100, 0.25);
}

@media (prefers-color-scheme: dark) {
    .auth-alert--error[b-5xpfymfygm] { color: #ef9a9a; background: rgba(239,83,80,0.15); }
    .auth-alert--success[b-5xpfymfygm] { color: #a5d6a7; background: rgba(66,165,100,0.15); }
}

/* ── Form fields ── */
.auth-field[b-5xpfymfygm] {
    margin-bottom: 18px;
}

.auth-label[b-5xpfymfygm] {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.auth-label-row[b-5xpfymfygm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.auth-label-row .auth-label[b-5xpfymfygm] { margin-bottom: 0; }

@media (prefers-color-scheme: dark) {
    .auth-label[b-5xpfymfygm] { color: #b0b0c8; }
}

.auth-input[b-5xpfymfygm] {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    border: 1.5px solid #d8d8e8;
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: #1a1a2e;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.auth-input:focus[b-5xpfymfygm] {
    border-color: #5C6BC0;
    box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.15);
}

.auth-input[b-5xpfymfygm]::placeholder { color: #aaa; }

@media (prefers-color-scheme: dark) {
    .auth-input[b-5xpfymfygm] {
        background: #12121f;
        border-color: #2e2e4a;
        color: #e8e8f0;
    }
    .auth-input:focus[b-5xpfymfygm] {
        border-color: #7986CB;
        box-shadow: 0 0 0 3px rgba(121, 134, 203, 0.2);
    }
}

.auth-validation[b-5xpfymfygm] {
    display: block;
    font-size: 0.78rem;
    color: #c62828;
    margin-top: 5px;
}

/* ── Remember me ── */
.auth-checkbox-label[b-5xpfymfygm] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    margin-bottom: 20px;
}

.auth-checkbox[b-5xpfymfygm] {
    width: 16px;
    height: 16px;
    accent-color: #5C6BC0;
    flex-shrink: 0;
    cursor: pointer;
}

@media (prefers-color-scheme: dark) {
    .auth-checkbox-label[b-5xpfymfygm] { color: #9090a8; }
}

/* ── Buttons ── */
.auth-btn[b-5xpfymfygm] {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

.auth-btn:active[b-5xpfymfygm] { transform: scale(0.99); }

.auth-btn--primary[b-5xpfymfygm] {
    background: #5C6BC0;
    color: #fff;
    box-shadow: 0 2px 8px rgba(92, 107, 192, 0.35);
    margin-bottom: 14px;
}

.auth-btn--primary:hover[b-5xpfymfygm] {
    opacity: 0.92;
    box-shadow: 0 4px 12px rgba(92, 107, 192, 0.45);
}

.auth-btn--ghost[b-5xpfymfygm] {
    background: transparent;
    color: #5C6BC0;
    border: 1.5px solid #d8d8e8;
}

.auth-btn--ghost:hover[b-5xpfymfygm] {
    background: rgba(92, 107, 192, 0.06);
    border-color: #5C6BC0;
}

@media (prefers-color-scheme: dark) {
    .auth-btn--ghost[b-5xpfymfygm] {
        color: #7986CB;
        border-color: #2e2e4a;
    }
    .auth-btn--ghost:hover[b-5xpfymfygm] {
        background: rgba(121,134,203,0.1);
        border-color: #7986CB;
    }
}

/* ── Divider ── */
.auth-divider[b-5xpfymfygm] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #bbb;
    font-size: 0.78rem;
}

.auth-divider[b-5xpfymfygm]::before,
.auth-divider[b-5xpfymfygm]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0ee;
}

@media (prefers-color-scheme: dark) {
    .auth-divider[b-5xpfymfygm] { color: #444; }
    .auth-divider[b-5xpfymfygm]::before, .auth-divider[b-5xpfymfygm]::after { background: #2e2e4a; }
}

/* ── Links ── */
.auth-link[b-5xpfymfygm] {
    color: #5C6BC0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.auth-link:hover[b-5xpfymfygm] { text-decoration: underline; }

.auth-link--small[b-5xpfymfygm] { font-size: 0.8rem; }

@media (prefers-color-scheme: dark) {
    .auth-link[b-5xpfymfygm] { color: #7986CB; }
}

/* ── Footer ── */
.auth-footer[b-5xpfymfygm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f8;
    font-size: 0.875rem;
    color: #777;
}

@media (prefers-color-scheme: dark) {
    .auth-footer[b-5xpfymfygm] {
        border-color: #2e2e4a;
        color: #9090a8;
    }
}
/* /Components/CommandPalette/CommandPalette.razor.rz.scp.css */
.cmd-overlay[b-wixsz353yu] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1400;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.cmd-palette[b-wixsz353yu] {
    background: var(--mud-palette-surface);
    border-radius: 10px;
    width: 560px;
    max-width: 94vw;
    overflow: hidden;
}

.cmd-search[b-wixsz353yu] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.cmd-input[b-wixsz353yu] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--mud-palette-text-primary);
}

.cmd-esc[b-wixsz353yu] {
    background: var(--mud-palette-background);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    opacity: 0.5;
}

.cmd-results[b-wixsz353yu] {
    max-height: 320px;
    overflow-y: auto;
}

.cmd-result[b-wixsz353yu] {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.1s;
}

.cmd-result:hover[b-wixsz353yu],
.cmd-result--active[b-wixsz353yu] {
    background: var(--mud-palette-background);
}

.cmd-footer[b-wixsz353yu] {
    display: flex;
    gap: 16px;
    padding: 8px 16px;
    border-top: 1px solid var(--mud-palette-lines-default);
    opacity: 0.5;
    font-size: 0.75rem;
}

kbd[b-wixsz353yu] {
    background: var(--mud-palette-background);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 3px;
    padding: 1px 5px;
    font-size: 0.7rem;
    margin-right: 2px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-12bui6t30k] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-12bui6t30k] {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

#blazor-error-ui[b-12bui6t30k] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-12bui6t30k] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-qqha7c65s6] {
    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-qqha7c65s6] {
    background-color: rgba(255, 255, 255, 0.5);
}

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

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

.bi[b-qqha7c65s6] {
    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-qqha7c65s6] {
    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-qqha7c65s6] {
    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-qqha7c65s6] {
    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-lock-nav-menu[b-qqha7c65s6] {
    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 d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-qqha7c65s6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-qqha7c65s6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-qqha7c65s6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-qqha7c65s6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

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

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

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

    .nav-item[b-qqha7c65s6]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

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

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

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

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

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

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

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

.nav-list-row[b-qqha7c65s6] {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-list-row:hover .nav-list-share-btn[b-qqha7c65s6] {
    opacity: 0.5 !important;
}

.nav-list-share-btn:hover[b-qqha7c65s6] {
    opacity: 1 !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-31tpjbzc22],
.components-reconnect-repeated-attempt-visible[b-31tpjbzc22],
.components-reconnect-failed-visible[b-31tpjbzc22],
.components-pause-visible[b-31tpjbzc22],
.components-resume-failed-visible[b-31tpjbzc22],
.components-rejoining-animation[b-31tpjbzc22] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-retrying[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-failed[b-31tpjbzc22],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-31tpjbzc22] {
    display: block;
}


#components-reconnect-modal[b-31tpjbzc22] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-31tpjbzc22 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-31tpjbzc22 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-31tpjbzc22 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-31tpjbzc22]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-31tpjbzc22 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-31tpjbzc22 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-31tpjbzc22 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-31tpjbzc22 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-31tpjbzc22] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-31tpjbzc22] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-31tpjbzc22] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-31tpjbzc22] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-31tpjbzc22] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-31tpjbzc22] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-31tpjbzc22] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-31tpjbzc22 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-31tpjbzc22] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-31tpjbzc22 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Notifications/NotificationsBell.razor.rz.scp.css */
.notif-badge[b-ajfy9ry3xx] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #EF5350;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    pointer-events: none;
}

.notif-panel[b-ajfy9ry3xx] {
    position: fixed;
    top: 56px;
    right: 48px;
    width: 320px;
    max-height: 420px;
    overflow-y: auto;
    background: var(--mud-palette-surface);
    border-radius: 8px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
}

.notif-panel__header[b-ajfy9ry3xx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 8px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    position: sticky;
    top: 0;
    background: var(--mud-palette-surface);
}

.notif-item[b-ajfy9ry3xx] {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background 0.15s;
}

.notif-item:hover[b-ajfy9ry3xx] { background: var(--mud-palette-background); }
.notif-item:last-child[b-ajfy9ry3xx] { border-bottom: none; }

.notif-overlay[b-ajfy9ry3xx] {
    position: fixed;
    inset: 0;
    z-index: 1199;
}
/* /Components/Pages/HabitsPage.razor.rz.scp.css */
.habits-page[b-umzl13zxsn] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.habits-page__header[b-umzl13zxsn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.habits-page__empty[b-umzl13zxsn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.habits-page__list[b-umzl13zxsn] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.habit-card[b-umzl13zxsn] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--mud-palette-surface);
}

.habit-card__left[b-umzl13zxsn] {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 8px;
}

.habit-card__check[b-umzl13zxsn] {
    margin-right: 4px;
}

.habit-card__info[b-umzl13zxsn] {
    flex: 1;
}

.habit-card__heatmap[b-umzl13zxsn] {
    display: flex;
    gap: 3px;
    align-items: center;
}

.habit-heatmap-cell[b-umzl13zxsn] {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--mud-palette-lines-default);
    opacity: 0.6;
    transition: background 0.2s;
}

.habit-heatmap-cell--logged[b-umzl13zxsn] {
    opacity: 1;
}

/* Dialog */
.habit-dialog-overlay[b-umzl13zxsn] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.habit-dialog[b-umzl13zxsn] {
    background: var(--mud-palette-surface);
    border-radius: 8px;
    padding: 24px;
    width: 360px;
    max-width: 90vw;
}

.color-swatch[b-umzl13zxsn] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s;
}

.color-swatch:hover[b-umzl13zxsn] { transform: scale(1.15); }

.color-swatch--selected[b-umzl13zxsn] {
    border-color: var(--mud-palette-text-primary);
    transform: scale(1.15);
}
/* /Components/Pages/StatsPage.razor.rz.scp.css */
.stats-page[b-rgozn302dl] {
    max-width: 900px;
    margin: 0 auto;
}

.stats-cards[b-rgozn302dl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-card[b-rgozn302dl] {
    background: var(--mud-palette-surface);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card .mud-icon-root[b-rgozn302dl] {
    font-size: 2rem;
}

.stats-chart-card[b-rgozn302dl] {
    background: var(--mud-palette-surface);
    border-radius: 8px;
    padding: 20px;
}
/* /Components/Pomodoro/PomodoroTimer.razor.rz.scp.css */
.pomodoro-timer[b-ny2wepgklo] {
    display: flex;
    align-items: center;
    position: relative;
}

.pomodoro-timer__btn[b-ny2wepgklo] {
    font-variant-numeric: tabular-nums;
}

.pomodoro-panel[b-ny2wepgklo] {
    position: fixed;
    top: 56px;
    right: 8px;
    width: 280px;
    background: var(--mud-palette-surface);
    border-radius: 8px;
    padding: 16px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pomodoro-panel__header[b-ny2wepgklo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pomodoro-panel__modes[b-ny2wepgklo] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pomodoro-panel__display[b-ny2wepgklo] {
    text-align: center;
}

.pomodoro-panel__time[b-ny2wepgklo] {
    font-size: 3rem;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.pomodoro-panel__progress[b-ny2wepgklo] {
    height: 4px;
    background: var(--mud-palette-lines-default);
    border-radius: 2px;
    overflow: hidden;
}

.pomodoro-panel__progress-bar[b-ny2wepgklo] {
    height: 100%;
    border-radius: 2px;
    transition: width 0.9s linear;
}

.pomodoro-panel__controls[b-ny2wepgklo] {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pomodoro-panel__sessions[b-ny2wepgklo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
/* /Components/Sharing/ShareDialog.razor.rz.scp.css */
.share-dialog-overlay[b-yoke987blg] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-dialog[b-yoke987blg] {
    background: var(--mud-palette-surface);
    border-radius: 8px;
    padding: 24px;
    width: 460px;
    max-width: 92vw;
    max-height: 80vh;
    overflow-y: auto;
}

.share-member-row[b-yoke987blg] {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.share-member-row:last-child[b-yoke987blg] {
    border-bottom: none;
}
/* /Components/Tasks/QuickAddBar.razor.rz.scp.css */
.quick-add-bar[b-fgx097wnxt] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.quick-add-bar__icon[b-fgx097wnxt] {
    opacity: 0.4;
    flex-shrink: 0;
}

.quick-add-bar__input[b-fgx097wnxt] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    font-family: Roboto, sans-serif;
    color: inherit;
}

.quick-add-bar__input[b-fgx097wnxt]::placeholder {
    opacity: 0.4;
}
/* /Components/Tasks/TaskDetailPanel.razor.rz.scp.css */
.detail-panel[b-hb2euz04w1] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--mud-palette-surface);
}

/* Top bar */
.detail-panel__topbar[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 6px;
    flex-shrink: 0;
}

.detail-panel__date-chip[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid currentColor;
    transition: opacity 0.15s;
    user-select: none;
}

.detail-panel__date-chip:hover[b-hb2euz04w1] { opacity: 0.7; }

.detail-panel__date-chip--empty[b-hb2euz04w1] {
    color: var(--mud-palette-text-disabled);
    border-color: var(--mud-palette-lines-default);
}

/* Title */
.detail-panel__title-row[b-hb2euz04w1] {
    padding: 8px 16px 4px;
    flex-shrink: 0;
}

.detail-panel__title-input[b-hb2euz04w1] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: Roboto, sans-serif;
    color: var(--mud-palette-text-primary);
    line-height: 1.3;
}

.detail-panel__title-input[b-hb2euz04w1]::placeholder {
    opacity: 0.3;
    font-weight: 400;
}

/* Scrollable body */
.detail-panel__body[b-hb2euz04w1] {
    flex: 1;
    overflow-y: auto;
    padding: 8px 16px 0;
}

/* Notes */
.detail-panel__notes[b-hb2euz04w1] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    font-family: Roboto, sans-serif;
    color: var(--mud-palette-text-secondary);
    resize: none;
    line-height: 1.6;
    min-height: 80px;
}

.detail-panel__notes[b-hb2euz04w1]::placeholder { opacity: 0.4; }

/* Divider */
.detail-panel__divider[b-hb2euz04w1] {
    height: 1px;
    background: var(--mud-palette-lines-default);
    margin: 10px 0;
}

/* Subtasks */
.detail-panel__subtask-row[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 0;
}

.detail-subtask--done[b-hb2euz04w1] {
    text-decoration: line-through;
    opacity: 0.4;
}

.detail-panel__add-subtask-row[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0 2px;
    opacity: 0.5;
    transition: opacity 0.15s;
}

.detail-panel__add-subtask-row:focus-within[b-hb2euz04w1] { opacity: 1; }

.detail-panel__subtask-input[b-hb2euz04w1] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    font-family: Roboto, sans-serif;
    color: var(--mud-palette-text-primary);
}

.detail-panel__subtask-input[b-hb2euz04w1]::placeholder { opacity: 0.6; }

/* Comments */
.detail-panel__comments-label[b-hb2euz04w1] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 8px;
}

.detail-panel__comment-row[b-hb2euz04w1] {
    display: flex;
    align-items: flex-start;
    padding: 6px 0;
    gap: 0;
}

.detail-panel__add-comment-row[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    padding: 8px 0 16px;
    border-top: 1px solid var(--mud-palette-lines-default);
    margin-top: 4px;
    gap: 4px;
}

.detail-panel__comment-input[b-hb2euz04w1] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    font-family: Roboto, sans-serif;
    color: var(--mud-palette-text-primary);
}

.detail-panel__comment-input[b-hb2euz04w1]::placeholder { opacity: 0.35; }

/* Bottom toolbar */
.detail-panel__toolbar[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border-top: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
    gap: 4px;
}

.detail-panel__toolbar-item[b-hb2euz04w1] {
    display: flex;
    align-items: center;
}

.detail-panel__toolbar-icon[b-hb2euz04w1] {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: 4px;
    cursor: default;
}
/* /Components/Tasks/TaskRow.razor.rz.scp.css */
.task-row[b-otcbfytzxa] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: background 0.12s;
    gap: 8px;
    min-height: 44px;
}

.task-row:hover[b-otcbfytzxa] {
    background: rgba(92, 107, 192, 0.05);
}

.task-row--selected[b-otcbfytzxa] {
    background: rgba(92, 107, 192, 0.09);
}

.task-row--completed[b-otcbfytzxa] {
    opacity: 0.55;
}

.task-row--completed .task-row__title[b-otcbfytzxa] {
    text-decoration: line-through;
}

/* Checkbox */
.task-row__check[b-otcbfytzxa] {
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 2px;
    transition: background 0.12s;
}

.task-row__check:hover[b-otcbfytzxa] {
    background: rgba(0,0,0,0.06);
}

/* Body */
.task-row__body[b-otcbfytzxa] {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-row__title[b-otcbfytzxa] {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-row__subtask-badge[b-otcbfytzxa] {
    font-size: 0.7rem;
    opacity: 0.45;
    flex-shrink: 0;
    background: rgba(0,0,0,0.07);
    padding: 1px 5px;
    border-radius: 8px;
}

/* Right side: list chip + date */
.task-row__right[b-otcbfytzxa] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.task-row__list-chip[b-otcbfytzxa] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.task-row__list-dot[b-otcbfytzxa] {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.task-row__list-name[b-otcbfytzxa] {
    font-size: 0.75rem;
    opacity: 0.5;
    white-space: nowrap;
}

.task-row__date[b-otcbfytzxa] {
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Delete action — only visible on hover */
.task-row__actions[b-otcbfytzxa] {
    opacity: 0;
    transition: opacity 0.12s;
    flex-shrink: 0;
}

.task-row:hover .task-row__actions[b-otcbfytzxa] {
    opacity: 1;
}
/* /Components/Tasks/TasksView.razor.rz.scp.css */
.tasks-view[b-d8w3u239jr] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 48px);
}

/* Header */
.tasks-view__header[b-d8w3u239jr] {
    flex-shrink: 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 12px;
}

.tasks-view__header-left[b-d8w3u239jr] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tasks-view__title[b-d8w3u239jr] {
    font-size: 1.1rem;
    font-weight: 600;
}

.tasks-view__task-count[b-d8w3u239jr] {
    font-size: 0.75rem;
    opacity: 0.4;
    background: rgba(0,0,0,0.07);
    padding: 2px 8px;
    border-radius: 10px;
}

.tasks-view__header-right[b-d8w3u239jr] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tasks-view__view-switcher[b-d8w3u239jr] {
    display: flex;
    align-items: center;
    gap: 2px;
    border-left: 1px solid var(--mud-palette-lines-default);
    padding-left: 8px;
    margin-left: 4px;
}

/* Layout */
.tasks-view__layout[b-d8w3u239jr] {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.tasks-view__list-col[b-d8w3u239jr] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tasks-view__list-scroll[b-d8w3u239jr] {
    flex: 1;
    overflow-y: auto;
}

/* Add task row */
.tasks-view__add-row[b-d8w3u239jr] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    cursor: text;
    transition: background 0.12s;
}

.tasks-view__add-row:hover[b-d8w3u239jr] {
    background: rgba(92, 107, 192, 0.04);
}

.tasks-view__add-icon[b-d8w3u239jr] {
    opacity: 0.35;
    flex-shrink: 0;
}

.tasks-view__add-input[b-d8w3u239jr] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    font-family: Roboto, sans-serif;
    color: var(--mud-palette-text-primary);
    opacity: 0.55;
}

.tasks-view__add-input:focus[b-d8w3u239jr] {
    opacity: 1;
}

.tasks-view__add-input[b-d8w3u239jr]::placeholder {
    opacity: 0.7;
}

/* Group headers */
.tasks-view__group-header[b-d8w3u239jr] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px 6px;
    cursor: pointer;
    user-select: none;
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background 0.12s;
}

.tasks-view__group-header:hover[b-d8w3u239jr] {
    background: var(--mud-palette-background-grey);
}

.tasks-view__group-header--overdue .tasks-view__group-label[b-d8w3u239jr] {
    color: #ef5350;
}

.tasks-view__group-chevron[b-d8w3u239jr] {
    opacity: 0.4;
    flex-shrink: 0;
}

.tasks-view__group-label[b-d8w3u239jr] {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tasks-view__group-count[b-d8w3u239jr] {
    font-size: 0.7rem;
    opacity: 0.45;
    background: rgba(0,0,0,0.08);
    padding: 1px 7px;
    border-radius: 10px;
}

.tasks-view__postpone-btn[b-d8w3u239jr] {
    font-size: 0.75rem;
    color: #5C6BC0;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background 0.12s;
}

.tasks-view__postpone-btn:hover[b-d8w3u239jr] {
    background: rgba(92, 107, 192, 0.12);
}

/* Empty state */
.tasks-view__empty[b-d8w3u239jr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    opacity: 0.6;
}

/* Detail panel */
.tasks-view__detail-col[b-d8w3u239jr] {
    width: 340px;
    flex-shrink: 0;
    border-left: 1px solid var(--mud-palette-lines-default);
    overflow-y: auto;
    background: var(--mud-palette-surface);
}

/* Mobile */
@media (max-width: 960px) {
    .tasks-view__detail-col[b-d8w3u239jr] {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 200;
        box-shadow: -4px 0 20px rgba(0,0,0,0.18);
        width: 92vw;
        max-width: 380px;
    }

    .tasks-view__backdrop[b-d8w3u239jr] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 199;
    }
}

@media (min-width: 961px) {
    .tasks-view__backdrop[b-d8w3u239jr] {
        display: none;
    }
}
/* /Components/Tasks/Views/CalendarView.razor.rz.scp.css */
.calendar-view[b-sti16xnyft] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.calendar-view__nav[b-sti16xnyft] {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 4px;
}

.calendar-view__month-label[b-sti16xnyft] {
    min-width: 160px;
    text-align: center;
    font-weight: 500;
}

.calendar-view__grid[b-sti16xnyft] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    flex: 1;
    overflow-y: auto;
    border-top: 1px solid var(--mud-palette-divider);
}

.calendar-view__dow[b-sti16xnyft] {
    padding: 6px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.5;
    text-align: center;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.calendar-view__day[b-sti16xnyft] {
    min-height: 90px;
    padding: 4px 6px;
    border-right: 1px solid var(--mud-palette-divider);
    border-bottom: 1px solid var(--mud-palette-divider);
    overflow: hidden;
}

.calendar-view__day--empty[b-sti16xnyft] {
    background: transparent;
}

.calendar-view__day--today[b-sti16xnyft] {
    background: rgba(92, 107, 192, 0.05);
}

.calendar-view__day-num[b-sti16xnyft] {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 2px;
}

.calendar-view__day-num--today[b-sti16xnyft] {
    background: #5C6BC0;
    color: #fff;
}

.calendar-view__chip[b-sti16xnyft] {
    font-size: 0.72rem;
    padding: 1px 6px;
    border-radius: 4px;
    margin-bottom: 2px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(92, 107, 192, 0.15);
    color: inherit;
    border-left: 3px solid #5C6BC0;
    transition: opacity 0.15s;
}

.calendar-view__chip:hover[b-sti16xnyft] { opacity: 0.75; }

.calendar-view__chip--high[b-sti16xnyft] { border-left-color: #ef5350; background: rgba(239, 83, 80, 0.1); }
.calendar-view__chip--medium[b-sti16xnyft] { border-left-color: #ffa726; background: rgba(255, 167, 38, 0.1); }
.calendar-view__chip--low[b-sti16xnyft] { border-left-color: #42a5f5; background: rgba(66, 165, 245, 0.1); }

.calendar-view__more[b-sti16xnyft] {
    font-size: 0.68rem;
    opacity: 0.5;
    padding-left: 2px;
}
/* /Components/Tasks/Views/KanbanView.razor.rz.scp.css */
.kanban-view[b-mn1nd9dsmz] {
    height: 100%;
    overflow: hidden;
}

.kanban-view__board[b-mn1nd9dsmz] {
    display: flex;
    gap: 16px;
    height: 100%;
    padding: 16px;
    overflow-x: auto;
}

.kanban-view__col[b-mn1nd9dsmz] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    background: var(--mud-palette-background-grey);
    border-radius: 10px;
    overflow: hidden;
}

.kanban-view__col-header[b-mn1nd9dsmz] {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--mud-palette-divider);
    gap: 8px;
}

.kanban-view__zone[b-mn1nd9dsmz] {
    flex: 1;
    padding: 8px;
    overflow-y: auto;
    min-height: 200px;
}

.kanban-card[b-mn1nd9dsmz] {
    background: var(--mud-palette-surface);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    cursor: pointer;
    border-left: 4px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.15s, transform 0.1s;
}

.kanban-card:hover[b-mn1nd9dsmz] {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.kanban-card--high[b-mn1nd9dsmz]    { border-left-color: #ef5350; }
.kanban-card--medium[b-mn1nd9dsmz]  { border-left-color: #ffa726; }
.kanban-card--low[b-mn1nd9dsmz]     { border-left-color: #42a5f5; }

.kanban-card__title[b-mn1nd9dsmz] {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kanban-card__due[b-mn1nd9dsmz],
.kanban-card__subtasks[b-mn1nd9dsmz] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    opacity: 0.6;
    margin-top: 4px;
}

.kanban-card__due--overdue[b-mn1nd9dsmz] {
    color: #ef5350;
    opacity: 1;
}
/* /Components/Tasks/Views/MatrixView.razor.rz.scp.css */
.matrix-view[b-lsmptnxcfh] {
    height: 100%;
    overflow: auto;
    padding: 16px;
}

.matrix-view__grid[b-lsmptnxcfh] {
    display: grid;
    grid-template-columns: 36px 1fr 1fr;
    grid-template-rows: 36px 1fr 1fr;
    gap: 12px;
    min-height: calc(100% - 32px);
}

.matrix-view__corner[b-lsmptnxcfh] {
    grid-column: 1;
    grid-row: 1;
}

.matrix-view__axis[b-lsmptnxcfh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
}

.matrix-view__axis--side[b-lsmptnxcfh] {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    justify-content: center;
}

.matrix-view__quadrant[b-lsmptnxcfh] {
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.matrix-view__q1[b-lsmptnxcfh] { background: rgba(239, 83, 80, 0.08); border: 1px solid rgba(239,83,80,0.2); }
.matrix-view__q2[b-lsmptnxcfh] { background: rgba(92, 107, 192, 0.08); border: 1px solid rgba(92,107,192,0.2); }
.matrix-view__q3[b-lsmptnxcfh] { background: rgba(255, 167, 38, 0.08); border: 1px solid rgba(255,167,38,0.2); }
.matrix-view__q4[b-lsmptnxcfh] { background: rgba(0,0,0,0.03); border: 1px solid var(--mud-palette-divider); }

.matrix-view__q-header[b-lsmptnxcfh] {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.matrix-view__q-label[b-lsmptnxcfh] {
    font-size: 0.85rem;
    font-weight: 600;
}

.matrix-view__q-sub[b-lsmptnxcfh] {
    font-size: 0.68rem;
    opacity: 0.5;
}

.matrix-view__q-items[b-lsmptnxcfh] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.matrix-view__empty[b-lsmptnxcfh] {
    font-size: 0.75rem;
    opacity: 0.3;
    font-style: italic;
}

.matrix-chip[b-lsmptnxcfh] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.matrix-chip:hover[b-lsmptnxcfh] { opacity: 0.7; }

.matrix-chip--q1[b-lsmptnxcfh] { background: rgba(239,83,80,0.15); }
.matrix-chip--q2[b-lsmptnxcfh] { background: rgba(92,107,192,0.15); }
.matrix-chip--q3[b-lsmptnxcfh] { background: rgba(255,167,38,0.15); }
.matrix-chip--q4[b-lsmptnxcfh] { background: rgba(0,0,0,0.06); }
/* /Components/Tasks/Views/TimelineView.razor.rz.scp.css */
:root[b-jog7sm6e3o] {
    --tl-col-w: 36px;
    --tl-row-h: 38px;
    --tl-label-w: 180px;
}

.timeline-view[b-jog7sm6e3o] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.timeline-view__nav[b-jog7sm6e3o] {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 4px;
    flex-shrink: 0;
}

.timeline-view__month-label[b-jog7sm6e3o] {
    min-width: 160px;
    text-align: center;
    font-weight: 500;
}

.timeline-view__scroll-wrap[b-jog7sm6e3o] {
    flex: 1;
    overflow: auto;
    position: relative;
}

/* Header row */
.timeline-view__header[b-jog7sm6e3o] {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--mud-palette-divider);
    position: sticky;
    top: 0;
    background: var(--mud-palette-surface);
    z-index: 2;
}

.timeline-view__label-col[b-jog7sm6e3o] {
    width: var(--tl-label-w);
    flex-shrink: 0;
    border-right: 1px solid var(--mud-palette-divider);
}

.timeline-view__day-header[b-jog7sm6e3o] {
    width: var(--tl-col-w);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    font-size: 0.65rem;
    border-right: 1px solid var(--mud-palette-divider);
}

.timeline-view__day-header--weekend[b-jog7sm6e3o] { background: rgba(0,0,0,0.025); }
.timeline-view__day-header--today[b-jog7sm6e3o] { background: rgba(92,107,192,0.08); }

.timeline-view__day-dow[b-jog7sm6e3o] { opacity: 0.5; font-weight: 600; text-transform: uppercase; }

.timeline-view__day-num[b-jog7sm6e3o] {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
}

.timeline-view__day-num--today[b-jog7sm6e3o] {
    background: #5C6BC0;
    color: #fff;
}

/* Today vertical line */
.timeline-view__today-line[b-jog7sm6e3o] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(92,107,192,0.4);
    pointer-events: none;
    z-index: 1;
}

/* Task rows */
.timeline-view__row[b-jog7sm6e3o] {
    display: flex;
    align-items: center;
    height: var(--tl-row-h);
    border-bottom: 1px solid var(--mud-palette-divider);
    cursor: pointer;
    transition: background 0.1s;
}

.timeline-view__row:hover[b-jog7sm6e3o] { background: rgba(0,0,0,0.02); }

.timeline-view__row--undated[b-jog7sm6e3o] { opacity: 0.65; }

.timeline-view__label[b-jog7sm6e3o] {
    width: var(--tl-label-w);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    overflow: hidden;
    border-right: 1px solid var(--mud-palette-divider);
}

.timeline-view__priority-dot[b-jog7sm6e3o] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.priority-high[b-jog7sm6e3o]    { background: #ef5350; }
.priority-medium[b-jog7sm6e3o]  { background: #ffa726; }
.priority-low[b-jog7sm6e3o]     { background: #42a5f5; }
.priority-none[b-jog7sm6e3o]    { background: #bdbdbd; }

.timeline-view__task-name[b-jog7sm6e3o] {
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.timeline-view__track[b-jog7sm6e3o] {
    display: flex;
    align-items: center;
}

.timeline-view__track--undated[b-jog7sm6e3o] {
    padding-left: 8px;
}

.timeline-view__cell[b-jog7sm6e3o] {
    width: var(--tl-col-w);
    height: var(--tl-row-h);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.timeline-view__cell--due[b-jog7sm6e3o] { background: rgba(92,107,192,0.06); }
.timeline-view__cell--overdue[b-jog7sm6e3o] { background: rgba(239,83,80,0.06); }

.timeline-view__milestone[b-jog7sm6e3o] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.timeline-view__milestone--high[b-jog7sm6e3o]     { background: #ef5350; }
.timeline-view__milestone--medium[b-jog7sm6e3o]   { background: #ffa726; }
.timeline-view__milestone--low[b-jog7sm6e3o]      { background: #42a5f5; }
.timeline-view__milestone--default[b-jog7sm6e3o]  { background: #5C6BC0; }
.timeline-view__milestone--overdue[b-jog7sm6e3o]  { background: #ef5350; border: 2px solid #b71c1c; }

.timeline-view__section-header[b-jog7sm6e3o] {
    padding: 12px 16px 4px;
    background: var(--mud-palette-background-grey);
    border-bottom: 1px solid var(--mud-palette-divider);
}

.timeline-view__empty[b-jog7sm6e3o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}
