/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-te7o19b8ux] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--sb-bg, #0b0c0f);
    min-height: 100vh;
    color: var(--sb-text, #e8eaed);
}

main[b-te7o19b8ux] {
    flex: 1;
    min-width: 0;
    background: transparent;
}

.sidebar[b-te7o19b8ux] {
    background: linear-gradient(180deg, #0f1115 0%, #0a0b0e 100%);
    border-right: 1px solid var(--sb-border, #2a2e38);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.25);
}

/* Collapsible sidebar (CSS-only, render-mode agnostic) */
.sidebar-toggle-state[b-te7o19b8ux] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.sidebar-toggle-btn[b-te7o19b8ux] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    user-select: none;
    height: 1.7rem;
    padding: 0 0.6rem;
    border: 1px solid var(--sb-border, #2a2e38);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--sb-text-dim, #a1a7b3);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.sidebar-toggle-btn:hover[b-te7o19b8ux] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sb-text, #e8eaed);
    border-color: var(--sb-border-strong, #3a3f4b);
}

.sidebar-toggle-icon[b-te7o19b8ux] {
    width: 1.05rem;
    height: 1.05rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 234, 237, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.top-row[b-te7o19b8ux] {
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sb-border, #2a2e38);
    justify-content: space-between;
    height: var(--sb-topbar-h, 2.25rem);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-row-status[b-te7o19b8ux] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--sb-text-dim, #a1a7b3);
    letter-spacing: 0.02em;
}

.status-dot[b-te7o19b8ux] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sb-success, #2ecc71);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--sb-success, #2ecc71) 60%, transparent);
    animation: sb-status-pulse-b-te7o19b8ux 2.4s ease-out infinite;
}

@keyframes sb-status-pulse-b-te7o19b8ux {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--sb-success, #2ecc71) 55%, transparent); }
    70% { box-shadow: 0 0 0 6px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

    .top-row[b-te7o19b8ux]  a, .top-row[b-te7o19b8ux]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--sb-text-dim, #a1a7b3);
    }

    .top-row[b-te7o19b8ux]  a:hover, .top-row[b-te7o19b8ux]  .btn-link:hover {
        text-decoration: none;
        color: var(--sb-accent, #e63946);
    }

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

@media (max-width: 640.98px) {
    .top-row[b-te7o19b8ux] {
        justify-content: space-between;
    }
    .top-row[b-te7o19b8ux]  a, .top-row[b-te7o19b8ux]  .btn-link {
        margin-left: 0;
    }
    /* On mobile the NavMenu provides its own hamburger toggler. */
    .sidebar-toggle-btn[b-te7o19b8ux] {
        display: none;
    }
}

@media (min-width: 641px) {
    .page[b-te7o19b8ux] {
        flex-direction: row;
    }
    .sidebar[b-te7o19b8ux] {
        width: 240px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
        transition: width .22s ease, opacity .22s ease;
    }
    /* Collapsed state: hide the sidebar to free up screen space */
    .sidebar-toggle-state:checked ~ .sidebar[b-te7o19b8ux] {
        width: 0;
        opacity: 0;
        border-right-color: transparent;
        pointer-events: none;
    }
    .top-row[b-te7o19b8ux] {
        position: sticky;
        top: 0;
        z-index: 1;
    }
    .top-row.auth[b-te7o19b8ux]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }
    .top-row[b-te7o19b8ux], article[b-te7o19b8ux] {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

#blazor-error-ui[b-te7o19b8ux] {
    color-scheme: dark only;
    background: var(--sb-danger, #e63946);
    color: #fff;
    bottom: 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
    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-te7o19b8ux] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-brand[b-8epz0g1wfu] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--sb-border, #2a2e38);
    background:
        radial-gradient(120% 140% at 0% 0%, color-mix(in srgb, var(--sb-accent, #e63946) 14%, transparent), transparent 55%),
        #0a0b0e;
}

.nav-brand img[b-8epz0g1wfu] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid color-mix(in srgb, var(--sb-accent, #e63946) 45%, transparent);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), 0 0 0 3px color-mix(in srgb, var(--sb-accent, #e63946) 14%, transparent);
    transition: box-shadow .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}

.nav-brand a:hover img[b-8epz0g1wfu] {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), 0 0 0 3px color-mix(in srgb, var(--sb-accent, #e63946) 30%, transparent);
}

.nav-brand .brand-text[b-8epz0g1wfu] {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand .brand-name[b-8epz0g1wfu] {
    font-family: var(--sb-font-display, 'Sora', sans-serif);
    font-weight: 600;
    color: var(--sb-text, #e8eaed);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.nav-brand .brand-sub[b-8epz0g1wfu] {
    font-size: 0.62rem;
    color: var(--sb-text-muted, #6c727f);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 2px;
}

.navbar-toggler[b-8epz0g1wfu] {
    appearance: none;
    cursor: pointer;
    width: 3rem;
    height: 2.25rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid var(--sb-border, #2a2e38);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 234, 237, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.5rem rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.nav-section-label[b-8epz0g1wfu] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sb-text-muted, #6c727f);
    padding: 0.85rem 1.25rem 0.35rem;
    font-weight: 600;
}

.bi[b-8epz0g1wfu] {
    display: inline-block;
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.7rem;
    top: -1px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.85;
}

.bi-house-door-fill-nav-menu[b-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8eaed' 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-8epz0g1wfu] {
    font-size: 0.9rem;
    padding: 0 0.6rem;
}

    .nav-item:first-of-type[b-8epz0g1wfu] { padding-top: 0.5rem; }
    .nav-item:last-of-type[b-8epz0g1wfu] { padding-bottom: 0.5rem; }

    .nav-item[b-8epz0g1wfu]  .nav-link {
        color: var(--sb-text-dim, #a1a7b3);
        background: none;
        border: none;
        border-radius: 9px;
        height: 2.6rem;
        display: flex;
        align-items: center;
        padding: 0 0.8rem;
        line-height: 2.6rem;
        width: 100%;
        font-weight: 500;
        letter-spacing: -0.01em;
        transition: background .2s ease, color .2s ease, transform .15s ease;
    }

.nav-item[b-8epz0g1wfu]  a.active {
    background: linear-gradient(90deg, color-mix(in srgb, var(--sb-accent, #e63946) 26%, transparent), color-mix(in srgb, var(--sb-accent, #e63946) 5%, transparent));
    color: #fff;
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--sb-accent, #e63946);
}

.nav-item[b-8epz0g1wfu]  a.active .bi {
    opacity: 1;
}

.nav-item[b-8epz0g1wfu]  .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--sb-text, #e8eaed);
    transform: translateX(2px);
}

hr.text-white-50[b-8epz0g1wfu] {
    border: none;
    border-top: 1px solid var(--sb-border, #2a2e38);
    margin: 0.6rem 1.1rem;
    opacity: 1;
}

.nav-group[b-8epz0g1wfu] {
    margin: 0.15rem 0;
}

.nav-group-summary[b-8epz0g1wfu] {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 0.6rem;
    padding: 0 0.8rem;
    height: 2.6rem;
    border-radius: 9px;
    color: var(--sb-text-dim, #a1a7b3);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: background .2s ease, color .2s ease;
}

.nav-group-summary[b-8epz0g1wfu]::-webkit-details-marker {
    display: none;
}

.nav-group-summary:hover[b-8epz0g1wfu] {
    background: rgba(255, 255, 255, 0.05);
    color: var(--sb-text, #e8eaed);
}

.nav-group-summary .nav-group-title[b-8epz0g1wfu] {
    flex: 1 1 auto;
}

.nav-group-chevron[b-8epz0g1wfu] {
    margin-right: 0 !important;
    opacity: 0.6;
    transition: transform .2s ease;
}

.nav-group[open] > .nav-group-summary .nav-group-chevron[b-8epz0g1wfu] {
    transform: rotate(180deg);
}

.nav-group-items[b-8epz0g1wfu] {
    padding-left: 0.6rem;
}

.nav-group-items .nav-item[b-8epz0g1wfu]  .nav-link {
    height: 2.35rem;
    line-height: 2.35rem;
    font-size: 0.86rem;
}

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

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

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

    .nav-scrollable[b-8epz0g1wfu] {
        display: block;
        height: calc(100vh - 4.2rem);
        overflow-y: auto;
        padding-bottom: 1rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-nzi65jv1qb],
.components-reconnect-repeated-attempt-visible[b-nzi65jv1qb],
.components-reconnect-failed-visible[b-nzi65jv1qb],
.components-pause-visible[b-nzi65jv1qb],
.components-resume-failed-visible[b-nzi65jv1qb],
.components-rejoining-animation[b-nzi65jv1qb] {
    display: none;
}

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


#components-reconnect-modal[b-nzi65jv1qb] {
    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-nzi65jv1qb 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-nzi65jv1qb {
    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/Pages/Management.razor.rz.scp.css */
/* Management Dashboard Styling */

.card[b-fv7ts895uv] {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover[b-fv7ts895uv] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Progress bar custom colors already handled by Bootstrap classes in the markup */

.badge[b-fv7ts895uv] {
    font-size: 0.875rem;
}

.table th[b-fv7ts895uv] {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    color: #6c757d;
}

.modal.show[b-fv7ts895uv] {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body h5[b-fv7ts895uv] {
        font-size: 1rem;
    }

    .progress[b-fv7ts895uv] {
        height: 24px !important;
    }

    .btn-sm[b-fv7ts895uv] {
        font-size: 0.75rem;
    }
}

/* Container cards with open tasks */
.card.border-warning[b-fv7ts895uv] {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}
/* /Components/Pages/ManagementSettings.razor.rz.scp.css */
.branding-settings .brand-logo-preview[b-x1crsgoesu] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    border-radius: 14px;
    border: 1px solid var(--sb-border, #2a2e38);
    background:
        radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--brand-color, #e63946) 14%, transparent), transparent 60%),
        var(--sb-bg-elev, #15171c);
    overflow: hidden;
}

.branding-settings .brand-logo-preview img[b-x1crsgoesu] {
    max-height: 110px;
    max-width: 85%;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.branding-settings .brand-color-chip[b-x1crsgoesu] {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.branding-settings .brand-swatches[b-x1crsgoesu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.branding-settings .brand-swatch[b-x1crsgoesu] {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.branding-settings .brand-swatch:hover[b-x1crsgoesu] {
    transform: translateY(-2px) scale(1.05);
}

.branding-settings .brand-swatch.selected[b-x1crsgoesu] {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
