/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Layout/InteractiveSidebar.razor.rz.scp.css */
.sidebar[b-q49dmsfma5] {
    background: #2d2d30;
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: width 180ms ease;
    width: 48px; /* collapsed */
}

    .sidebar.expanded[b-q49dmsfma5] {
        width: 220px;
    }
/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Layout/MainLayout.razor.rz.scp.css */
.fade-in[b-cf7xxep572] {
    animation: fadeIn-b-cf7xxep572 250ms ease-in;
}

@keyframes fadeIn-b-cf7xxep572 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.shell-loading[b-cf7xxep572] {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ensure content doesn't jump */
.content[b-cf7xxep572] {
    flex: 1;
    padding: 12px;
    background: #f5f5f5;
    overflow: auto;
}
/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Layout/NavMenu.razor.rz.scp.css */
.menu[b-txvn7c9mh9] {
    display: flex;
    flex-direction: column;
}

.menu-item[b-txvn7c9mh9] {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    padding: 0 12px;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 13.5px;
    cursor: pointer;
    text-align: left;
    transition: padding 180ms ease, justify-content 180ms ease;
}

    .menu-item:hover[b-txvn7c9mh9] {
        background: #3f3f46;
    }

    .menu-item.active[b-txvn7c9mh9] {
        background: #6495ED; /* CornflowerBlue */
        color: #fff;
    }

.icon[b-txvn7c9mh9] {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
/* ───────────── COLLAPSED STATE ───────────── */

.sidebar:not(.expanded) .menu-item[b-txvn7c9mh9] {
    justify-content: center; /* center icon */
    padding: 0; /* no horizontal padding */
}

    /* text completely removed from layout */
    .sidebar:not(.expanded) .menu-item .text[b-txvn7c9mh9] {
        display: none;
    }

/* ───────────── EXPANDED STATE ───────────── */

.sidebar.expanded .menu-item[b-txvn7c9mh9] {
    justify-content: flex-start;
    padding: 0 12px;
}

    .sidebar.expanded .menu-item .text[b-txvn7c9mh9] {
        display: inline;
    }
.chevron[b-txvn7c9mh9] {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.8;
}

/* ───────────── SUBMENU ───────────── */

.submenu-item[b-txvn7c9mh9] {
    padding: 6px 12px 6px 40px;
    background: transparent;
    border: none;
    color: #bbb;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
}

    .submenu-item:hover[b-txvn7c9mh9] {
        background: #2f2f33;
        color: #fff;
    }

/* ───────────── FOOTER ───────────── */

.nav-footer[b-txvn7c9mh9] {
    margin-top: auto;
    padding: 10px;
    border-top: 1px solid #3f3f46;
}

.logout-btn[b-txvn7c9mh9] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #777;
    color: #ccc;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
}

    .logout-btn:hover[b-txvn7c9mh9] {
        background: #3f3f46;
        color: #fff;
    }
/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Pages/Admin.razor.rz.scp.css */
/*.chart-host {
    width: 600px;
    height: 300px;
    display: flex;
    align-items: center;*/ /* vertical */
    /*justify-content: center;*/ /* horizontal */
    /* optional, just to visualize */
    /* border: 1px dashed #ccc; */
/*}*/
.dashboard[b-bstw9tm5fc] {
    padding: 12px;
}

.dashboard-header[b-bstw9tm5fc] {
    text-align: center;
    margin-bottom: 12px;
}

    .dashboard-header h1[b-bstw9tm5fc] {
        font-size: 1.2rem;
        font-weight: 700;
        color: #7a0000;
    }

.dashboard-grid[b-bstw9tm5fc] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}

/* LEFT SIDE */
.left-column[b-bstw9tm5fc] {
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
}

/* RIGHT SIDE */
.right-column[b-bstw9tm5fc] {
    display: grid;
    gap: 10px;
}

/* COMMON CARD */
.card[b-bstw9tm5fc] {
    /*background: linear-gradient(135deg, #6ea6f2, #5f96e6);*/
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* METRIC CARD */
.metric-card[b-bstw9tm5fc] {
    background: #6b9cf0;
    border-radius: 8px;
    padding: 10px;
}

.metric-title[b-bstw9tm5fc] {
    font-size: 0.75rem;
    opacity: 0.9;
}

.metric-value[b-bstw9tm5fc] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a2cff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .dashboard-grid[b-bstw9tm5fc] {
        grid-template-columns: 1fr;
    }
}
/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Pages/Index.razor.rz.scp.css */
:root[b-jlof6s4hz2] {
    --primary: cornflowerblue;
    --primary-dark: #3b6fcf;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
}

.landing-root[b-jlof6s4hz2] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
}

/* HERO */
.hero[b-jlof6s4hz2] {
    background: linear-gradient( 135deg, cornflowerblue, #5a8cff );
    color: white;
    padding: 5rem 1.5rem;
    text-align: center;
}

    .hero h1[b-jlof6s4hz2] {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

.hero-subtitle[b-jlof6s4hz2] {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-actions[b-jlof6s4hz2] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
button[b-jlof6s4hz2] {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary[b-jlof6s4hz2] {
    background: white;
    color: cornflowerblue;
    font-weight: 600;
}

    .btn-primary:hover[b-jlof6s4hz2] {
        background: #eef2ff;
    }

.btn-secondary[b-jlof6s4hz2] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

    .btn-secondary:hover[b-jlof6s4hz2] {
        background: rgba(255, 255, 255, 0.15);
    }

.btn-primary.large[b-jlof6s4hz2] {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* FEATURES */
.features[b-jlof6s4hz2] {
    background: var(--bg-light);
    padding: 4rem 1.5rem;
    text-align: center;
}

    .features h2[b-jlof6s4hz2] {
        margin-bottom: 3rem;
    }

.feature-grid[b-jlof6s4hz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card[b-jlof6s4hz2] {
    background: white;
    padding: 1.75rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: left;
}

    .feature-card h3[b-jlof6s4hz2] {
        color: cornflowerblue;
        margin-bottom: 0.5rem;
    }

/* VALUE */
.value[b-jlof6s4hz2] {
    padding: 4rem 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

    .value p[b-jlof6s4hz2] {
        color: var(--text-muted);
        font-size: 1.05rem;
    }

/* CTA */
.cta[b-jlof6s4hz2] {
    background: cornflowerblue;
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
}

    .cta p[b-jlof6s4hz2] {
        opacity: 0.9;
        margin-bottom: 2rem;
    }
/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Pages/Login.razor.rz.scp.css */
.login-page[b-02weo9f18l] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #6495ED;
    font-family: Segoe UI, sans-serif;
}

/* ───────────── CARD ───────────── */

.login-card[b-02weo9f18l] {
    width: 320px;
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

    .login-card h3[b-02weo9f18l] {
        margin-bottom: 16px;
    }

/* ───────────── FORM ───────────── */

.form-group[b-02weo9f18l] {
    margin-bottom: 12px;
}

    .form-group label[b-02weo9f18l] {
        display: block;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .form-group input[b-02weo9f18l],
    .location-panel select[b-02weo9f18l] {
        width: 100%;
        padding: 6px;
        font-size: 14px;
    }

button[b-02weo9f18l] {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    background: #007acc;
    color: white;
    border: none;
    cursor: pointer;
}

    button:disabled[b-02weo9f18l] {
        opacity: 0.7;
        cursor: default;
    }
/* ───────────── CREDENTIALS BLOCK ───────────── */
.credentials-block.disabled[b-02weo9f18l] {
    opacity: 0.55;
    pointer-events: none;
}

/* ───────────── LOCATION PANEL ───────────── */

.location-panel[b-02weo9f18l] {
    margin-top: 16px;
}

/* ───────────── ERROR ───────────── */

.error[b-02weo9f18l] {
    margin: 8px 0;
    color: #b00020;
    font-size: 13px;
}

/* ───────────── SPLASH ───────────── */

.splash[b-02weo9f18l] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-text[b-02weo9f18l] {
    margin-top: 12px;
    font-size: 14px;
}

.spinner[b-02weo9f18l] {
    width: 32px;
    height: 32px;
    border: 4px solid #ccc;
    border-top: 4px solid #007acc;
    border-radius: 50%;
    animation: spin-b-02weo9f18l 1s linear infinite;
}

@keyframes spin-b-02weo9f18l {
    to {
        transform: rotate(360deg);
    }
}
/* Logo and title section */
.logo-section[b-02weo9f18l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

.logo-frame[b-02weo9f18l] {
    height: 80px;
    width: 80px;
    border-radius: 20%;
    overflow: hidden;
    border: 2px solid CornflowerBlue;
    background-color: CornflowerBlue;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-frame img[b-02weo9f18l] {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.app-title[b-02weo9f18l] {
    color: darkblue;
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

/* _content/DigitalWorxpaces.Worxpace.Backend/Components/Pages/Sales.razor.rz.scp.css */
.ops-page[b-hzfwklrq3o] {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    background: #f4f6f8;
    font-family: system-ui, sans-serif;
}

/* TOP BAR */
.ops-topbar[b-hzfwklrq3o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #4C769E;
    color: white;
}

.modes[b-hzfwklrq3o] {
    display: flex;
    gap: 8px;
}

.mode[b-hzfwklrq3o] {
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background: #e3eaf2;
    cursor: pointer;
}

    .mode.primary[b-hzfwklrq3o] {
        background: #ffffff;
        font-weight: bold;
    }

/* STATS */
.session-stats[b-hzfwklrq3o] {
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
}

/* MAIN GRID */
.ops-main[b-hzfwklrq3o] {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
}

/* PANELS */
.panel[b-hzfwklrq3o] {
    background: white;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .panel h2[b-hzfwklrq3o] {
        margin: 0 0 8px 0;
        font-size: 1rem;
    }

/* LISTS */
.list[b-hzfwklrq3o] {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}

.list-item[b-hzfwklrq3o] {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

    .list-item.urgent[b-hzfwklrq3o] {
        background: #fff3cd;
    }

    .list-item.failed[b-hzfwklrq3o] {
        background: #f8d7da;
    }

.amount[b-hzfwklrq3o] {
    font-weight: bold;
}

    .amount.negative[b-hzfwklrq3o] {
        color: darkred;
    }

/* COMPACT LIST */
.compact-list[b-hzfwklrq3o] {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

    .compact-list li[b-hzfwklrq3o] {
        padding: 6px 0;
        border-bottom: 1px dashed #ddd;
    }

.spaced[b-hzfwklrq3o] {
    margin-top: 14px;
}
/* =========================
   RESPONSIVE (MOBILE)
   ========================= */
@media (max-width: 768px) {

    /* Page height should flow, not lock */
    .ops-page[b-hzfwklrq3o] {
        height: auto;
        min-height: 100vh;
    }

    /* TOP BAR */
    .ops-topbar[b-hzfwklrq3o] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .modes[b-hzfwklrq3o] {
        flex-wrap: wrap;
        gap: 6px;
    }

    .mode[b-hzfwklrq3o] {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .session-stats[b-hzfwklrq3o] {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.8rem;
    }

    /* MAIN GRID → STACK */
    .ops-main[b-hzfwklrq3o] {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
        overflow: visible;
    }

    /* PANELS */
    .panel[b-hzfwklrq3o] {
        max-height: none;
    }

    /* LISTS SHOULD FLOW WITH PAGE */
    .list[b-hzfwklrq3o] {
        overflow-y: visible;
    }

    /* COMPACT LIST */
    .compact-list li[b-hzfwklrq3o] {
        padding: 8px 0;
    }
}
/* _content/DigitalWorxpaces.Worxpace.Backend/Shared/DonutChart.razor.rz.scp.css */
.donut-chart[b-nbf1fsbk95] {
    display: block;
}

.donut-segment[b-nbf1fsbk95] {
    transition: opacity 0.15s ease;
}

    .donut-segment:hover[b-nbf1fsbk95] {
        opacity: 0.8;
    }

.donut-label[b-nbf1fsbk95] {
    font-size: 12px;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.donut-center[b-nbf1fsbk95] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.donut-legend[b-nbf1fsbk95] {
    margin-top: 8px;
}

.donut-legend-item[b-nbf1fsbk95] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.donut-legend-color[b-nbf1fsbk95] {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}
.donut-layout[b-nbf1fsbk95] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Legend on the left by default */
.donut-legend-container[b-nbf1fsbk95] {
    display: flex;
    justify-content: flex-end;
}

.donut-legend[b-nbf1fsbk95] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
}

/* Chart wrapper */
.donut-chart-container[b-nbf1fsbk95] {
    display: flex;
    justify-content: center;
}

/* Responsive: move legend below on small screens */
@media (max-width: 600px) {
    .donut-layout[b-nbf1fsbk95] {
        flex-direction: column;
    }

    .donut-legend-container[b-nbf1fsbk95] {
        order: 2;
    }

    .donut-chart-container[b-nbf1fsbk95] {
        order: 1;
    }
}
/* _content/DigitalWorxpaces.Worxpace.Backend/Shared/MetricCard.razor.rz.scp.css */
.metric-card[b-i9xkwb3qcw] {
    position: relative;
    border: 2px solid #a9c4f5;
    border-radius: 8px;
    padding: 14px 12px 12px 12px;
    background: linear-gradient(135deg, #6e9ff0, #5d8fe6);
}

/* GROUPBOX TITLE */
.metric-card-title[b-i9xkwb3qcw] {
    position: absolute;
    top: -10px;
    left: 14px;
    padding: 0 8px;
    background: #6e9ff0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0a2cff;
}

/* BODY */
.metric-card-body[b-i9xkwb3qcw] {
    display: flex;
    gap: 10px;
}

/* ICON PLACEHOLDER */
.metric-card-icon[b-i9xkwb3qcw] {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.25);
}

/* VALUES */
.metric-card-values[b-i9xkwb3qcw] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* MAIN VALUE */
.metric-main[b-i9xkwb3qcw] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2cff;
    line-height: 1.2;
}

/* SUB VALUES */
.metric-sub[b-i9xkwb3qcw] {
    font-size: 0.8rem;
    color: #1a2d66;
    opacity: 0.95;
}
