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

main[b-c5wsyd9plo] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar[b-c5wsyd9plo] {
    background: #0f172a;
    color: #cbd5e1;
}

/* Top bar — clean white with very subtle shadow */
.top-row[b-c5wsyd9plo] {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e9f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.top-row form[b-c5wsyd9plo] {
    margin: 0;
}

/* User chip — avatar + name pair */
.user-chip[b-c5wsyd9plo] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.85rem 0.3rem 0.3rem;
    background: #f1f5f9;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

.user-avatar[b-c5wsyd9plo] {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.25);
}

.user-name[b-c5wsyd9plo] {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.88rem;
    max-width: 18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sign-out button */
.btn-sign-out[b-c5wsyd9plo] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: #ffffff;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn-sign-out:hover[b-c5wsyd9plo] {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

.sign-out-icon[b-c5wsyd9plo] {
    width: 0.95rem;
    height: 0.95rem;
    background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23475569'%3E%3Cpath d='M6 12.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v2a.5.5 0 0 1-1 0v-2A1.5 1.5 0 0 1 6.5 2h8A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 12.5v-2a.5.5 0 0 1 1 0v2z'/%3E%3Cpath d='M.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L1.707 7.5H10.5a.5.5 0 0 1 0 1H1.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3z'/%3E%3C/svg%3E");
}

.sign-in-link[b-c5wsyd9plo] {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
}

.sign-in-link:hover[b-c5wsyd9plo] {
    text-decoration: underline;
}

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

    .user-name[b-c5wsyd9plo] {
        max-width: 8rem;
    }
}

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

    .sidebar[b-c5wsyd9plo] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
        box-shadow: 1px 0 0 rgba(15, 23, 42, 0.08);
    }

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

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

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

#blazor-error-ui[b-c5wsyd9plo] {
    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-c5wsyd9plo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Brand row at top of sidebar */
.brand-row[b-rjvwbpgimt] {
    min-height: 4rem;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.brand-link[b-rjvwbpgimt] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #f8fafc;
    width: 100%;
}

.brand-link:hover[b-rjvwbpgimt] {
    color: #f8fafc;
}

.brand-mark[b-rjvwbpgimt] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.25);
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark[b-rjvwbpgimt]::after {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2 8.186 1.113zm3.564 1.426L5.596 5 8 5.961 14.154 3.5l-2.404-.961zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6z'/%3E%3C/svg%3E");
}

.brand-text[b-rjvwbpgimt] {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.brand-name[b-rjvwbpgimt] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.01em;
}

.brand-suffix[b-rjvwbpgimt] {
    font-size: 0.72rem;
    font-weight: 500;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.1rem;
}

/* Mobile navbar toggle */
.navbar-toggler[b-rjvwbpgimt] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 6px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28203, 213, 225, 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.75rem rgba(255, 255, 255, 0.04);
}

.navbar-toggler:checked[b-rjvwbpgimt] {
    background-color: rgba(148, 163, 184, 0.2);
}

/* Nav items */
.nav[b-rjvwbpgimt] {
    padding: 0.85rem 0.6rem;
}

.nav-item[b-rjvwbpgimt] {
    font-size: 0.92rem;
    padding-bottom: 0.15rem;
}

.nav-item[b-rjvwbpgimt]  .nav-link {
    color: #cbd5e1;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 6px;
    height: 2.6rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    line-height: 1;
    width: 100%;
    padding: 0 0.85rem;
    font-weight: 500;
    transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.nav-item[b-rjvwbpgimt]  .nav-link:hover {
    background-color: rgba(148, 163, 184, 0.08);
    color: #f1f5f9;
}

.nav-item[b-rjvwbpgimt]  a.active {
    background-color: rgba(56, 189, 248, 0.12);
    color: #ffffff;
    border-left-color: #38bdf8;
}

.nav-item[b-rjvwbpgimt]  a.active .nav-icon {
    opacity: 1;
}

.nav-divider[b-rjvwbpgimt] {
    height: 1px;
    background: rgba(148, 163, 184, 0.12);
    margin: 0.6rem 0.85rem;
}

.nav-subgroup[b-rjvwbpgimt] {
    margin-top: -0.05rem;
    margin-bottom: 0.15rem;
    padding-left: 0.35rem;
    border-left: 1px solid rgba(148, 163, 184, 0.15);
    margin-left: 1.6rem;
}

.nav-item[b-rjvwbpgimt]  .nav-sub-link {
    height: 2.15rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: #94a3b8;
    padding-left: 0.85rem;
    border-left-width: 0;
    border-radius: 4px;
}

.nav-item[b-rjvwbpgimt]  .nav-sub-link:hover {
    color: #e2e8f0;
    background-color: rgba(148, 163, 184, 0.06);
}

.nav-item[b-rjvwbpgimt]  .nav-sub-link.active {
    color: #ffffff;
    background-color: rgba(56, 189, 248, 0.1);
    border-left-color: transparent;
    font-weight: 600;
}

/* Icon container */
.nav-icon[b-rjvwbpgimt] {
    display: inline-block;
    width: 1.15rem;
    height: 1.15rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.78;
    flex-shrink: 0;
}

/* Per-item icons (Bootstrap-Icons-inspired silhouettes, single-color white) */
.ico-home[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%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");
}

.ico-customers[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-5.784 6A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
}

.ico-parcels[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2 8.186 1.113zm3.564 1.426L5.596 5 8 5.961 14.154 3.5l-2.404-.961-2.404.961zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464z'/%3E%3C/svg%3E");
}

.ico-pricelists[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M2 1a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l4.586-4.586a1 1 0 0 0 0-1.414l-7-7A1 1 0 0 0 6.586 1H2zm4 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z'/%3E%3C/svg%3E");
}

.ico-extra-fees[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M13.442 2.558a1.914 1.914 0 0 0-2.707 0L2.558 10.735a1.914 1.914 0 0 0 0 2.707 1.914 1.914 0 0 0 2.707 0l8.177-8.177a1.914 1.914 0 0 0 0-2.707zM3.5 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zm9 7a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM3.5 3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm9 7a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.ico-exchange-rates[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M11.534 1.36a.5.5 0 0 1 .706-.026l2.5 2.32a.5.5 0 0 1 0 .732l-2.5 2.32a.5.5 0 1 1-.68-.732L13.158 4.5H4.5a2.5 2.5 0 0 0 0 5H5a.5.5 0 0 1 0 1h-.5a3.5 3.5 0 1 1 0-7h8.658L11.56 2.066a.5.5 0 0 1-.026-.706z'/%3E%3Cpath d='M4.466 14.64a.5.5 0 0 1-.706.026l-2.5-2.32a.5.5 0 0 1 0-.732l2.5-2.32a.5.5 0 1 1 .68.732L2.842 11.5H11.5a2.5 2.5 0 0 0 0-5H11a.5.5 0 0 1 0-1h.5a3.5 3.5 0 1 1 0 7H2.842l1.598 1.434a.5.5 0 0 1 .026.706z'/%3E%3C/svg%3E");
}

.ico-intl-pallet[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zM2.2 7.5a5.8 5.8 0 0 1 1.26-3.25c.52.26 1.13.47 1.8.62A14.7 14.7 0 0 0 5 7.5H2.2zm0 1h2.8c.03.93.13 1.82.3 2.63-.67.15-1.29.36-1.82.62A5.8 5.8 0 0 1 2.2 8.5zm2.04 4.01c.4-.17.86-.32 1.36-.43.26.88.63 1.61 1.09 2.09a6.02 6.02 0 0 1-2.45-1.66zM6 8.5h4c-.03.85-.13 1.65-.28 2.36A10.5 10.5 0 0 0 8 10.72c-.59 0-1.17.05-1.72.14A13.2 13.2 0 0 1 6 8.5zm0-1c.03-.85.13-1.65.28-2.36.55.09 1.13.14 1.72.14.59 0 1.17-.05 1.72-.14.15.71.25 1.51.28 2.36H6zm2 6.3c-.47 0-.98-.69-1.34-1.89.43-.06.88-.09 1.34-.09.46 0 .91.03 1.34.09C8.98 13.11 8.47 13.8 8 13.8zm0-9.52c-.46 0-.91-.03-1.34-.09C7.02 2.99 7.53 2.3 8 2.3c.47 0 .98.69 1.34 1.89-.43.06-.88.09-1.34.09zm1.31 9.89c.46-.48.83-1.21 1.09-2.09.5.11.96.26 1.36.43a6.02 6.02 0 0 1-2.45 1.66zm3.21-2.42c-.53-.26-1.15-.47-1.82-.62.17-.81.27-1.7.3-2.63h2.8a5.8 5.8 0 0 1-1.28 3.25zM11 7.5c-.03-.93-.13-1.82-.3-2.63.67-.15 1.28-.36 1.8-.62a5.8 5.8 0 0 1 1.3 3.25H11zM11.76 3.5c-.4.17-.86.32-1.36.43-.26-.88-.63-1.61-1.09-2.09 1 .23 1.86.82 2.45 1.66zM6.69 1.84c-.46.48-.83 1.21-1.09 2.09-.5-.11-.96-.26-1.36-.43a6.02 6.02 0 0 1 2.45-1.66z'/%3E%3C/svg%3E");
}

.ico-parcel-templates[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l6.154 2.461L14.154 3.5 8.186 1.113zM15 4.239l-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6z'/%3E%3Cpath d='M11.5 8.5h3v1h-3v-1zm0 2h3v1h-3v-1zM1.5 1.5h4v1h-4v-1zm0 12h4v1h-4v-1z'/%3E%3C/svg%3E");
}

.ico-messages[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm2-.5a.5.5 0 0 0-.5.5v.217l6.5 3.9 6.5-3.9V4a.5.5 0 0 0-.5-.5H2zm12.5 2.466-4.708 2.824L14.5 11.67V5.966zm-.034 6.423L8.775 8.91a1.5 1.5 0 0 1-1.55 0L1.534 12.39A.5.5 0 0 0 2 12.5h12a.5.5 0 0 0 .466-.111zM1.5 11.67l4.708-2.88L1.5 5.965v5.704z'/%3E%3C/svg%3E");
}

.ico-cms-files[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M4 0h5.293A1 1 0 0 1 10 .293L14.707 5a1 1 0 0 1 .293.707V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm5 1.5V5a1 1 0 0 0 1 1h3.5L9 1.5zM5 8a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5zm0 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H5z'/%3E%3C/svg%3E");
}

.ico-invoices[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M5 0h6a2 2 0 0 1 2 2v12.5a.5.5 0 0 1-.777.416L10.5 13.768l-1.723 1.148a.5.5 0 0 1-.554 0L6.5 13.768l-1.723 1.148A.5.5 0 0 1 4 14.5V1a1 1 0 0 1 1-1zm1 4.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1H6zm0 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1H6zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1H6z'/%3E%3Cpath d='M2 2a2 2 0 0 1 1-1.732V13.5a1.5 1.5 0 0 0 2.332 1.248l.168-.112.168.112c.254.169.54.252.832.252H4a2 2 0 0 1-2-2V2z'/%3E%3C/svg%3E");
}

.ico-api[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M2 2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V2zm2 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0zm2 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0zM2 10a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-4zm2 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0zm2 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0z'/%3E%3C/svg%3E");
}

.ico-carriers[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M0 3.5A1.5 1.5 0 0 1 1.5 2h9A1.5 1.5 0 0 1 12 3.5V5h1.02a1.5 1.5 0 0 1 1.17.563l1.481 1.85a1.5 1.5 0 0 1 .329.938V10.5a1.5 1.5 0 0 1-1.5 1.5H14a2 2 0 1 1-4 0H5a2 2 0 1 1-3.998-.085A1.5 1.5 0 0 1 0 10.5v-7zM3 12a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm9 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm0-3h2.5l-1.5-2H12v2z'/%3E%3C/svg%3E");
}

.ico-services[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 6.586V2zm3.5 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3Cpath d='M1.293 7.793A1 1 0 0 1 1 7.086V2a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l.043-.043-7.457-7.457z'/%3E%3C/svg%3E");
}

.ico-users[b-rjvwbpgimt] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cbd5e1'%3E%3Cpath d='M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2zm4.5 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-3zM8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm5 2.755C12.146 12.825 10.623 12 8 12s-4.146.825-5 1.755V14a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-.245z'/%3E%3C/svg%3E");
}

/* Scrollable area */
.nav-scrollable[b-rjvwbpgimt] {
    display: none;
}

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

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

    .nav-scrollable[b-rjvwbpgimt] {
        display: block;
        height: calc(100vh - 4rem);
        overflow-y: auto;
    }

    /* Subtle scrollbar in the sidebar */
    .nav-scrollable[b-rjvwbpgimt]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-rjvwbpgimt]::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.25);
        border-radius: 3px;
    }

    .nav-scrollable[b-rjvwbpgimt]::-webkit-scrollbar-track {
        background: transparent;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-e61recwe5g],
.components-reconnect-repeated-attempt-visible[b-e61recwe5g],
.components-reconnect-failed-visible[b-e61recwe5g],
.components-pause-visible[b-e61recwe5g],
.components-resume-failed-visible[b-e61recwe5g],
.components-rejoining-animation[b-e61recwe5g] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-e61recwe5g {
    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;
    }
}
