/* _content/iteraanhuis-portal/Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   MainLayout — Command Bar
   ============================================ */

.app-container[b-oeluh17ui8] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.top-navbar[b-oeluh17ui8] {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 56px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.navbar-content[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

/* ── Logo ── */
.nb-brand[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
}

.nb-brand-icon[b-oeluh17ui8] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--mud-palette-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nb-brand-name[b-oeluh17ui8] {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Thin separator between brand and nav */
.navbar-content[b-oeluh17ui8]::after {
    content: none;
}

/* ── Nav links ── */
.navbar-nav[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-item[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 7px;
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.12s, background 0.12s;
    position: relative;
    white-space: nowrap;
}

.nav-item:hover[b-oeluh17ui8] {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
}

.nav-item.active[b-oeluh17ui8] {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Active underline */
.nav-item.active[b-oeluh17ui8]::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--mud-palette-primary);
    border-radius: 2px 2px 0 0;
}

/* ── Right actions ── */
.navbar-actions[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.nb-action-btn[b-oeluh17ui8] {
    background: none;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: background 0.12s, color 0.12s;
}

.nb-action-btn:hover[b-oeluh17ui8] {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.9);
}

.nb-action-btn .mud-icon-root[b-oeluh17ui8] { color: inherit !important; }

/* Hide mobile toggle on desktop */
.sidebar-toggle[b-oeluh17ui8] { display: none; }

/* ── User button ── */
.user-btn[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px 4px 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
    color: #fff;
}

.user-btn:hover[b-oeluh17ui8] {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.18);
}

.user-avatar[b-oeluh17ui8] {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--mud-palette-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.user-name[b-oeluh17ui8] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* MudMenu dropdown head */
.nb-menu-head[b-oeluh17ui8] {
    padding: 10px 16px 8px;
}

.nb-menu-name[b-oeluh17ui8] {
    font-size: 0.82rem;
    font-weight: 700;
}

.nb-menu-email[b-oeluh17ui8] {
    font-size: 0.68rem;
    opacity: 0.45;
    margin-top: 2px;
}

/* ══════════════════════════════════════
   MOBILE SIDEBAR
   ══════════════════════════════════════ */
.sidebar-overlay[b-oeluh17ui8] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    z-index: 150;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.active[b-oeluh17ui8] {
    opacity: 1;
    pointer-events: all;
}

.expandable-sidebar[b-oeluh17ui8] {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: #0a0a0a;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: left 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 200;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.expandable-sidebar.open[b-oeluh17ui8] { left: 0; }

.sidebar-header[b-oeluh17ui8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.close-btn[b-oeluh17ui8] {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, color 0.12s;
}

.close-btn:hover[b-oeluh17ui8] { background: rgba(255,255,255,0.07); color: #fff; }
.close-btn .mud-icon-root[b-oeluh17ui8] { color: inherit !important; }

.sidebar-nav[b-oeluh17ui8] {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.sidebar-item[b-oeluh17ui8] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.12s, color 0.12s;
}

.sidebar-item:hover[b-oeluh17ui8] { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.sidebar-item.active[b-oeluh17ui8] { background: rgba(255,255,255,0.09); color: #fff; }
.sidebar-item--danger:hover[b-oeluh17ui8] { background: rgba(239,68,68,0.08); color: #f87171; }

.item-icon[b-oeluh17ui8] { font-size: 1rem !important; flex-shrink: 0; color: inherit !important; }
.item-icon .mud-icon-root[b-oeluh17ui8] { font-size: inherit !important; color: inherit !important; }

.sidebar-divider[b-oeluh17ui8] {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 6px 4px;
}

/* ── Main content ── */
.main-content[b-oeluh17ui8] {
    flex: 1;
    width: 100%;
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .navbar-nav[b-oeluh17ui8] { display: none; }
    .sidebar-toggle[b-oeluh17ui8] { display: flex !important; }
}

@media (max-width: 640px) {
    .navbar-content[b-oeluh17ui8] { padding: 0 1rem; gap: 0.75rem; }
    .user-name[b-oeluh17ui8] { display: none; }
    .nb-brand-name[b-oeluh17ui8] { font-size: 0.82rem; }
}
/* _content/iteraanhuis-portal/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-m8hwnwsn2a] {
    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-m8hwnwsn2a] {
    background-color: rgba(255, 255, 255, 0.5);
}

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

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

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

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

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

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

    .nav-item[b-m8hwnwsn2a]  .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-m8hwnwsn2a]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

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

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

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

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

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

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/AppointmentDetailsDialog.razor.rz.scp.css */
/* ============================================
   Appointment Details Dialog — Tabbed
   ============================================ */

[b-beoa0isrll] .apd-dialog {
    width: min(680px, 95vw) !important;
    max-width: min(680px, 95vw) !important;
}

    [b-beoa0isrll] .apd-dialog .mud-dialog-content {
        padding: 0 !important;
        overflow: hidden;
    }

    [b-beoa0isrll] .apd-dialog .mud-dialog-title {
        padding: 0 !important;
    }

/* ── Titlebar ── */
.apd-titlebar[b-beoa0isrll] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem 0.75rem;
    gap: var(--space-3);
}

.apd-titlebar-left[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.apd-status-dot[b-beoa0isrll] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.apd-dot--scheduled[b-beoa0isrll] {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}

.apd-dot--completed[b-beoa0isrll] {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.apd-dot--canceled[b-beoa0isrll] {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.2);
}

.apd-dot--archived[b-beoa0isrll] {
    background: #9ca3af;
    box-shadow: 0 0 0 3px rgba(156,163,175,0.2);
}

.apd-title-text[b-beoa0isrll] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.apd-title[b-beoa0isrll] {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.apd-subtitle[b-beoa0isrll] {
    font-size: 0.7rem;
    opacity: 0.4;
    font-weight: 500;
}

.apd-titlebar-right[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

/* ── Tab strip ── */
.apd-tabs[b-beoa0isrll] {
    display: flex;
    gap: 0;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(128,128,128,0.12);
}

.apd-tab[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    color: inherit;
    opacity: 0.45;
    transition: opacity 0.15s, border-color 0.15s;
    white-space: nowrap;
}

    .apd-tab .mud-icon-root[b-beoa0isrll] {
        font-size: 0.9rem !important;
    }

    .apd-tab:hover[b-beoa0isrll] {
        opacity: 0.75;
    }

.apd-tab--active[b-beoa0isrll] {
    opacity: 1;
    border-bottom-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary);
}

.apd-tab-badge[b-beoa0isrll] {
    background: var(--mud-palette-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
    line-height: 14px;
}

/* ── Content area ── */
.apd-content[b-beoa0isrll] {
    height: 480px;
    overflow: hidden;
}

.apd-pane[b-beoa0isrll] {
    height: 100%;
    overflow-y: auto;
    padding: 1.5rem 1.5rem;
}

/* ── Shared ── */
.apd-section-label[b-beoa0isrll] {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.35;
    display: block;
    margin-bottom: 0.6rem;
}

.apd-divider[b-beoa0isrll] {
    height: 1px;
    background: rgba(128,128,128,0.1);
    margin: 1.25rem 0;
}

/* ── TAB 0: Info ── */
.apd-info-hero[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(128,128,128,0.1);
}

.apd-info-avatar[b-beoa0isrll] {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--mud-palette-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.apd-info-name[b-beoa0isrll] {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.apd-info-since[b-beoa0isrll] {
    font-size: 0.72rem;
    opacity: 0.4;
    font-weight: 500;
    margin-top: 2px;
}

.apd-info-grid[b-beoa0isrll] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.apd-info-item[b-beoa0isrll] {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(128,128,128,0.06);
    gap: var(--space-3);
}

    .apd-info-item:last-child[b-beoa0isrll] {
        border-bottom: none;
    }

.apd-info-label[b-beoa0isrll] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.38;
}

.apd-info-val[b-beoa0isrll] {
    font-size: 0.82rem;
    font-weight: 500;
}

.apd-info-val--link[b-beoa0isrll] {
    text-decoration: none;
    color: var(--mud-palette-primary);
    transition: opacity 0.15s;
}

    .apd-info-val--link:hover[b-beoa0isrll] {
        opacity: 0.75;
    }

/* Copyable (postal) */
.apd-copyable[b-beoa0isrll] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(128,128,128,0.07);
    border: 1px solid rgba(128,128,128,0.12);
    border-radius: 6px;
    padding: 3px 8px;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: copy;
    color: inherit;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

    .apd-copyable:hover[b-beoa0isrll] {
        background: rgba(37,99,235,0.08);
        border-color: var(--mud-palette-primary);
        color: var(--mud-palette-primary);
    }

.apd-copyable-val[b-beoa0isrll] {
}

.apd-copyable-icon[b-beoa0isrll] {
    font-size: 0.75rem !important;
    opacity: 0;
    transition: opacity 0.15s;
}

.apd-copyable:hover .apd-copyable-icon[b-beoa0isrll] {
    opacity: 0.7;
}

/* PIN section */
.apd-pin-section[b-beoa0isrll] {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(128,128,128,0.1);
}

.apd-pin[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(37,99,235,0.07);
    border: 1px solid rgba(37,99,235,0.18);
    border-radius: 10px;
    cursor: copy;
    color: var(--mud-palette-primary);
    width: 100%;
    text-align: left;
    transition: background 0.15s;
    margin-top: 0.5rem;
}

    .apd-pin:hover[b-beoa0isrll] {
        background: rgba(37,99,235,0.13);
    }

.apd-pin-code[b-beoa0isrll] {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 0.15em;
    flex: 1;
}

.apd-pin-copy[b-beoa0isrll] {
    font-size: 0.85rem !important;
    opacity: 0;
    transition: opacity 0.15s;
}

.apd-pin:hover .apd-pin-copy[b-beoa0isrll] {
    opacity: 0.6;
}

/* ── TAB 1: Details ── */
.apd-pane--details[b-beoa0isrll] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.apd-detail-badges[b-beoa0isrll] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.apd-type-badge[b-beoa0isrll] {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    border-radius: 6px;
}

.apd-type--repair[b-beoa0isrll] {
    background: rgba(37,99,235,0.1);
    color: #2563eb;
}

.apd-type--installation[b-beoa0isrll] {
    background: rgba(16,185,129,0.1);
    color: #059669;
}

.apd-type--maintenance[b-beoa0isrll] {
    background: rgba(245,158,11,0.1);
    color: #d97706;
}

.apd-type--training[b-beoa0isrll] {
    background: rgba(124,58,237,0.1);
    color: #7c3aed;
}

.apd-type--data_recovery[b-beoa0isrll] {
    background: rgba(14,165,233,0.1);
    color: #0891b2;
}

.apd-type--emergency[b-beoa0isrll] {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
}

.apd-time-badge[b-beoa0isrll] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(128,128,128,0.08);
    opacity: 0.7;
}

    .apd-time-badge .mud-icon-root[b-beoa0isrll] {
        font-size: 0.75rem !important;
    }

.apd-today-badge[b-beoa0isrll] {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(37,99,235,0.1);
    color: #2563eb;
}

.apd-past-badge[b-beoa0isrll] {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(128,128,128,0.08);
    opacity: 0.5;
}

.apd-description[b-beoa0isrll] {
    font-size: 0.85rem;
    line-height: 1.65;
    opacity: 0.7;
    padding: 0.85rem 1.1rem;
    background: rgba(128,128,128,0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(128,128,128,0.18);
    margin-bottom: 0.25rem;
}

/* Status pills */
.apd-status-row[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.apd-status-pills[b-beoa0isrll] {
    display: flex;
    gap: 3px;
    background: rgba(128,128,128,0.07);
    padding: 3px;
    border-radius: 8px;
}

.apd-status-pill[b-beoa0isrll] {
    background: transparent;
    border: none;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
    opacity: 0.45;
    transition: all 0.15s;
}

    .apd-status-pill:hover[b-beoa0isrll] {
        opacity: 0.8;
    }

.apd-status-pill--scheduled.active[b-beoa0isrll] {
    background: var(--mud-palette-surface);
    color: #f59e0b;
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.apd-status-pill--completed.active[b-beoa0isrll] {
    background: var(--mud-palette-surface);
    color: #10b981;
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.apd-status-pill--canceled.active[b-beoa0isrll] {
    background: var(--mud-palette-surface);
    color: #ef4444;
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Assignment */
.apd-assign-row[b-beoa0isrll] {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.apd-assigned-current[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    opacity: 0.45;
    margin-top: 6px;
}

    .apd-assigned-current .mud-icon-root[b-beoa0isrll] {
        font-size: 0.82rem !important;
    }

/* ── TAB 2: Notes ── */
.apd-pane--notes[b-beoa0isrll] {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.apd-notes-feed[b-beoa0isrll] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apd-notes-empty[b-beoa0isrll] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    opacity: 0.35;
    font-size: 0.8rem;
    text-align: center;
    height: 100%;
}

.apd-note[b-beoa0isrll] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 80%;
}

.apd-note--own[b-beoa0isrll] {
    align-self: flex-end;
}

.apd-note--other[b-beoa0isrll] {
    align-self: flex-start;
}

.apd-note-meta[b-beoa0isrll] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.apd-note--own .apd-note-meta[b-beoa0isrll] {
    flex-direction: row-reverse;
}

.apd-note-author[b-beoa0isrll] {
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0.4;
}

.apd-note-time[b-beoa0isrll] {
    font-size: 0.62rem;
    opacity: 0.28;
}

.apd-note-del[b-beoa0isrll] {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    padding: 0;
    color: #ef4444;
    display: flex;
    align-items: center;
    margin-left: auto;
    transition: opacity 0.15s;
}

.apd-note--own .apd-note-del[b-beoa0isrll] {
    margin-left: 0;
    margin-right: auto;
}

.apd-note-del .mud-icon-root[b-beoa0isrll] {
    font-size: 0.75rem !important;
}

.apd-note:hover .apd-note-del[b-beoa0isrll] {
    opacity: 0.4;
}

.apd-note-del:hover[b-beoa0isrll] {
    opacity: 1 !important;
}

.apd-note-body[b-beoa0isrll] {
    font-size: 0.8rem;
    line-height: 1.5;
    padding: 9px 13px;
    border-radius: 12px;
    word-break: break-word;
}

.apd-note--own .apd-note-body[b-beoa0isrll] {
    background: var(--mud-palette-primary);
    color: #fff;
    border-bottom-right-radius: 3px;
}

.apd-note--other .apd-note-body[b-beoa0isrll] {
    background: rgba(128,128,128,0.1);
    border-bottom-left-radius: 3px;
}

.apd-note-input[b-beoa0isrll] {
    display: flex;
    align-items: flex-end;
    gap: var(--space-2);
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid rgba(128,128,128,0.1);
    flex-shrink: 0;
}

.apd-note-field[b-beoa0isrll] {
    flex: 1;
}
/* _content/iteraanhuis-portal/Components/Pages/Appointments.razor.rz.scp.css */
/* ============================================
   Appointments — List Page
   ============================================ */

.appointments-page[b-v13d6l60yl] {
    padding: var(--space-6);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* ── Header ── */
.page-header[b-v13d6l60yl] {
    margin-bottom: var(--space-5);
}

.header-top[b-v13d6l60yl] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-3);
}

.header-title h1[b-v13d6l60yl] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.title-accent[b-v13d6l60yl] {
    display: inline-block;
    width: 4px;
    height: 1.6rem;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.header-title p[b-v13d6l60yl] {
    margin: 3px 0 0 0.65rem;
    font-size: 0.8rem;
    opacity: 0.45;
    font-weight: 500;
}

.header-actions[b-v13d6l60yl] {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

/* ── Stat ticker ── */
.stat-ticker[b-v13d6l60yl] {
    display: flex;
    align-items: center;
    padding-left: 0.65rem;
    gap: 0;
}

.ticker-item[b-v13d6l60yl] {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding-right: 1.1rem;
}

.ticker-num[b-v13d6l60yl] {
    font-size: 1.2rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ticker-today[b-v13d6l60yl] {
    color: #2563eb;
}

.ticker-upcoming[b-v13d6l60yl] {
    color: #f59e0b;
}

.ticker-completed[b-v13d6l60yl] {
    color: #10b981;
}

.ticker-cancelled[b-v13d6l60yl] {
    color: #ef4444;
}

.ticker-sep[b-v13d6l60yl] {
    font-size: 0.7rem;
    opacity: 0.2;
}

.ticker-lbl[b-v13d6l60yl] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.4;
}

.ticker-rule[b-v13d6l60yl] {
    display: inline-block;
    width: 1px;
    height: 0.9rem;
    background: currentColor;
    opacity: 0.15;
    margin-right: 1.1rem;
}

/* ── Table Panel ── */
.table-panel[b-v13d6l60yl] {
    background: var(--mud-palette-surface);
    border-radius: 12px;
    border: 1px solid rgba(128,128,128,0.12);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.table-panel-header[b-v13d6l60yl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.table-panel-title[b-v13d6l60yl] {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.table-panel-controls[b-v13d6l60yl] {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    flex-wrap: wrap;
}

.search-field[b-v13d6l60yl] {
    max-width: 220px;
    min-width: 160px;
}

.table-loading[b-v13d6l60yl] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 2rem 1.5rem;
    opacity: 0.5;
    font-size: 0.875rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .appointments-page[b-v13d6l60yl] {
        padding: var(--space-4);
    }

    .header-top[b-v13d6l60yl] {
        flex-direction: column;
        gap: var(--space-3);
    }

    .header-actions[b-v13d6l60yl] {
        width: 100%;
        flex-wrap: wrap;
    }

    .stat-ticker[b-v13d6l60yl] {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .ticker-rule[b-v13d6l60yl] {
        display: none;
    }

    .table-panel-header[b-v13d6l60yl] {
        flex-direction: column;
        align-items: flex-start;
    }

    .table-panel-controls[b-v13d6l60yl] {
        width: 100%;
    }

    .search-field[b-v13d6l60yl] {
        max-width: 100%;
        width: 100%;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/AppointmentsCalendar.razor.rz.scp.css */
/* ============================================
   Appointments Calendar — Full-height page
   ============================================ */

.cal-page[b-pc5xa0jugj] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 64px); /* subtract navbar */
    padding: var(--space-4) var(--space-6) var(--space-5);
    max-width: 1600px;
    margin: 0 auto;
    gap: var(--space-4);
    overflow: hidden;
}

/* ── Header ── */
.cal-header[b-pc5xa0jugj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cal-header-left[b-pc5xa0jugj] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.back-btn[b-pc5xa0jugj] {
    opacity: 0.5;
    font-size: 0.8rem !important;
}

.back-btn:hover[b-pc5xa0jugj] { opacity: 1; }

.cal-title h1[b-pc5xa0jugj] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.title-accent[b-pc5xa0jugj] {
    display: inline-block;
    width: 4px;
    height: 1.6rem;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.cal-header-right[b-pc5xa0jugj] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* View switcher */
.view-switcher[b-pc5xa0jugj] {
    display: flex;
    background: rgba(128,128,128,0.1);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.view-btn[b-pc5xa0jugj] {
    background: transparent;
    border: none;
    padding: 5px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    transition: all 0.15s ease;
}

.view-btn:hover[b-pc5xa0jugj] { opacity: 0.85; background: rgba(128,128,128,0.1); }

.view-btn.active[b-pc5xa0jugj] {
    background: var(--mud-palette-primary);
    opacity: 1;
    color: #fff;
}

/* ── Calendar body fills all remaining space ── */
.cal-body[b-pc5xa0jugj] {
    flex: 1;
    min-height: 0;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    border: 1px solid rgba(128,128,128,0.12);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.cal-loading[b-pc5xa0jugj] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

/* ── Radzen overrides ── */
[b-pc5xa0jugj] .rz-scheduler {
    font-family: var(--font-sans), sans-serif;
    border: none !important;
    box-shadow: none !important;
    background: transparent;
    height: 100% !important;
}

[b-pc5xa0jugj] .rz-scheduler-header { display: none !important; }

[b-pc5xa0jugj] .rz-scheduler-month-view table {
    table-layout: fixed;
    width: 100%;
}

[b-pc5xa0jugj] .rz-scheduler-month-view th {
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    opacity: 0.5;
}

[b-pc5xa0jugj] .rz-scheduler-month-view td {
    height: 120px !important;
    vertical-align: top;
    padding: 4px !important;
    border: 1px solid rgba(128,128,128,0.08) !important;
}

[b-pc5xa0jugj] .rz-scheduler-week-view td,
[b-pc5xa0jugj] .rz-scheduler-day-view td {
    height: 44px !important;
    border-color: rgba(128,128,128,0.08) !important;
}

[b-pc5xa0jugj] .rz-scheduler-time {
    font-size: 0.67rem;
    font-weight: 600;
    opacity: 0.4;
    padding: 0 8px;
}

[b-pc5xa0jugj] .rz-scheduler-appointment {
    border-radius: 4px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    padding: 2px 5px !important;
    margin: 1px 2px !important;
    cursor: pointer;
    transition: filter 0.15s, transform 0.1s;
}

[b-pc5xa0jugj] .rz-scheduler-appointment:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

[b-pc5xa0jugj] .rz-scheduler-today { background: rgba(37,99,235,0.04) !important; }

[b-pc5xa0jugj] .rz-scheduler-current-time {
    background: #ef4444;
    height: 2px;
    z-index: 10;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cal-page[b-pc5xa0jugj] {
        padding: var(--space-3) var(--space-4);
        height: auto;
        overflow: visible;
    }

    .cal-body[b-pc5xa0jugj] { height: 600px; }

    .cal-header[b-pc5xa0jugj] { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
    .cal-header-right[b-pc5xa0jugj] { width: 100%; justify-content: space-between; }
}
/* _content/iteraanhuis-portal/Components/Pages/Archive.razor.rz.scp.css */
/* Archive Page - Modern MudBlazor Style */

.archive-page[b-eodpawbh6u] {
    padding: var(--space-6);
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.page-header[b-eodpawbh6u] {
    margin-bottom: var(--space-6);
}

[b-eodpawbh6u] .archive-breadcrumbs {
    padding: 0;
    margin-bottom: var(--space-2);
}

.header-row[b-eodpawbh6u] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-4);
}

[b-eodpawbh6u] .header-title {
    font-weight: 700;
    line-height: 1.2;
}

.bulk-actions[b-eodpawbh6u] {
    flex-shrink: 0;
}

/* Search Bar */
.search-bar[b-eodpawbh6u] {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mud-palette-divider);
    margin-bottom: var(--space-6);
    background: var(--mud-palette-surface);
}

.search-input[b-eodpawbh6u] {
    flex: 1;
    min-width: 200px;
}

.type-filter[b-eodpawbh6u] {
    min-width: 160px;
    max-width: 200px;
}

/* Card Grid */
.archive-grid[b-eodpawbh6u] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-4);
}

/* Archive Card */
.archive-card[b-eodpawbh6u] {
    padding: var(--space-4);
    border-radius: var(--radius-lg) !important;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.archive-card:hover[b-eodpawbh6u] {
    border-color: var(--mud-palette-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mud-theme-dark .archive-card:hover[b-eodpawbh6u] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Card Top Row */
.card-top[b-eodpawbh6u] {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

[b-eodpawbh6u] .type-chip {
    font-size: 0.7rem;
    height: 24px;
}

.card-actions[b-eodpawbh6u] {
    display: flex;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.archive-card:hover .card-actions[b-eodpawbh6u] {
    opacity: 1;
}

/* Card Body */
.card-body[b-eodpawbh6u] {
    padding: var(--space-1) 0;
}

[b-eodpawbh6u] .card-title {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2px;
}

/* Card Meta */
.card-meta[b-eodpawbh6u] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    padding: var(--space-2) 0;
}

.meta-item[b-eodpawbh6u] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pin-text[b-eodpawbh6u] {
    font-family: monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Card Footer */
.card-footer-info[b-eodpawbh6u] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: var(--space-2);
    opacity: 0.6;
}

/* Empty State */
.empty-state[b-eodpawbh6u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-6);
    text-align: center;
    border: 2px dashed var(--mud-palette-divider);
    border-radius: var(--radius-xl);
    margin-top: var(--space-6);
}

.empty-icon-wrapper[b-eodpawbh6u] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mud-palette-background-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-eodpawbh6u] .empty-icon-wrapper .mud-icon-root {
    font-size: 2.5rem;
    opacity: 0.4;
}

/* No Results */
.no-results[b-eodpawbh6u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-8);
    text-align: center;
    margin-top: var(--space-4);
}

/* Loading */
.loading-state[b-eodpawbh6u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-row[b-eodpawbh6u] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .archive-page[b-eodpawbh6u] {
        padding: var(--space-4);
    }

    .archive-grid[b-eodpawbh6u] {
        grid-template-columns: 1fr;
    }

    .search-bar[b-eodpawbh6u] {
        flex-direction: column;
    }

    .search-input[b-eodpawbh6u],
    .type-filter[b-eodpawbh6u] {
        width: 100%;
        max-width: 100%;
    }

    .card-actions[b-eodpawbh6u] {
        opacity: 1;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Bookings.razor.rz.scp.css */
/* ============================================
   Bookings — Dispatch Desk (email-client layout)
   ============================================ */

.bk-page[b-sqpg0dnta1] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 64px);
    padding: var(--space-5) var(--space-8) var(--space-4);
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    gap: var(--space-4);
}

.bk-loading[b-sqpg0dnta1] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

/* ── Header ── */
.bk-header[b-sqpg0dnta1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    gap: var(--space-4);
}

.bk-header-left h1[b-sqpg0dnta1] {
    margin: 0 0 var(--space-2) 0;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
}

.title-accent[b-sqpg0dnta1] {
    display: inline-block;
    width: 4px;
    height: 1.6rem;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Vitals */
.bk-vitals[b-sqpg0dnta1] {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding-left: 0.65rem;
}

.bk-vital[b-sqpg0dnta1] {
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

    .bk-vital.pending[b-sqpg0dnta1] {
        color: #f59e0b;
    }

    .bk-vital.contacted[b-sqpg0dnta1] {
        color: #2563eb;
    }

    .bk-vital.converted[b-sqpg0dnta1] {
        color: #10b981;
    }

    .bk-vital.cancelled[b-sqpg0dnta1] {
        color: rgba(128,128,128,0.5);
    }

.bk-vital-lbl[b-sqpg0dnta1] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
    margin-left: 5px;
    margin-right: 14px;
}

.bk-vital-rule[b-sqpg0dnta1] {
    width: 1px;
    height: 0.9rem;
    background: currentColor;
    opacity: 0.15;
    margin-right: 14px;
    align-self: center;
}

/* Status tab strip */
.bk-header-right[b-sqpg0dnta1] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.bk-status-tabs[b-sqpg0dnta1] {
    display: flex;
    background: rgba(128,128,128,0.08);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.bk-tab[b-sqpg0dnta1] {
    background: transparent;
    border: none;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
    opacity: 0.45;
    transition: all 0.15s ease;
    white-space: nowrap;
}

    .bk-tab:hover[b-sqpg0dnta1] {
        opacity: 0.8;
        background: rgba(128,128,128,0.1);
    }

    .bk-tab.active[b-sqpg0dnta1] {
        background: var(--mud-palette-surface);
        opacity: 1;
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

.bk-tab--pending.active[b-sqpg0dnta1] {
    color: #f59e0b;
}

.bk-tab--contacted.active[b-sqpg0dnta1] {
    color: #2563eb;
}

.bk-tab--converted.active[b-sqpg0dnta1] {
    color: #10b981;
}

.bk-tab--cancelled.active[b-sqpg0dnta1] {
    color: #6b7280;
}

.bk-search[b-sqpg0dnta1] {
    max-width: 200px;
}

/* ── Desk: two-column ── */
.bk-desk[b-sqpg0dnta1] {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-4);
    overflow: hidden;
}

/* ── Queue (left) ── */
.bk-queue[b-sqpg0dnta1] {
    overflow-y: auto;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    border: 1px solid rgba(128,128,128,0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bk-queue-empty[b-sqpg0dnta1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    opacity: 0.4;
    font-size: 0.8rem;
    padding: 3rem;
}

/* Queue row */
.bk-row[b-sqpg0dnta1] {
    display: flex;
    align-items: stretch;
    gap: 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(128,128,128,0.07);
    transition: background 0.12s ease;
    position: relative;
}

    .bk-row:last-child[b-sqpg0dnta1] {
        border-bottom: none;
    }

    .bk-row:hover[b-sqpg0dnta1] {
        background: rgba(128,128,128,0.05);
    }

.bk-row--active[b-sqpg0dnta1] {
    background: rgba(37,99,235,0.05) !important;
}

/* Left accent bar */
.bk-row-accent[b-sqpg0dnta1] {
    width: 3px;
    flex-shrink: 0;
    border-radius: 0;
}

.bk-row:first-child .bk-row-accent[b-sqpg0dnta1] {
    border-top-left-radius: 12px;
}

/* Status dot top-right */
.bk-row-status-dot[b-sqpg0dnta1] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: flex-start;
    margin: 14px 12px 0 0;
}

.bk-row-body[b-sqpg0dnta1] {
    flex: 1;
    padding: 11px 8px 11px 12px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bk-row-top[b-sqpg0dnta1] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-2);
}

.bk-row-name[b-sqpg0dnta1] {
    font-size: 0.83rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-row-age[b-sqpg0dnta1] {
    font-size: 0.65rem;
    opacity: 0.35;
    font-weight: 600;
    flex-shrink: 0;
}

.bk-row-mid[b-sqpg0dnta1] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.bk-row-package[b-sqpg0dnta1] {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-row-city[b-sqpg0dnta1] {
    font-size: 0.68rem;
    opacity: 0.35;
    white-space: nowrap;
    flex-shrink: 0;
}

    .bk-row-city[b-sqpg0dnta1]::before {
        content: '·';
        margin-right: 5px;
    }

.bk-row-preview[b-sqpg0dnta1] {
    font-size: 0.7rem;
    opacity: 0.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: italic;
    margin-top: 1px;
}

/* Status color tokens */
.bk-accent--pending[b-sqpg0dnta1] {
    background: #f59e0b;
}

.bk-accent--contacted[b-sqpg0dnta1] {
    background: #2563eb;
}

.bk-accent--converted[b-sqpg0dnta1] {
    background: #10b981;
}

.bk-accent--cancelled[b-sqpg0dnta1] {
    background: rgba(128,128,128,0.3);
}

/* ── Detail pane (right) ── */
.bk-detail[b-sqpg0dnta1] {
    background: var(--mud-palette-surface);
    border-radius: 12px;
    border: 1px solid rgba(128,128,128,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bk-detail--empty[b-sqpg0dnta1] {
    align-items: center;
    justify-content: center;
}

.bk-detail-placeholder[b-sqpg0dnta1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    opacity: 0.3;
    font-size: 0.8rem;
}

/* Detail header */
.bk-detail-head[b-sqpg0dnta1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    flex-shrink: 0;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.bk-detail-name[b-sqpg0dnta1] {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.bk-detail-meta[b-sqpg0dnta1] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.bk-status-badge[b-sqpg0dnta1] {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 5px;
    color: #fff;
}

.bk-accent-bg--pending[b-sqpg0dnta1] {
    background: #f59e0b;
}

.bk-accent-bg--contacted[b-sqpg0dnta1] {
    background: #2563eb;
}

.bk-accent-bg--converted[b-sqpg0dnta1] {
    background: #10b981;
}

.bk-accent-bg--cancelled[b-sqpg0dnta1] {
    background: #9ca3af;
}

.bk-detail-time[b-sqpg0dnta1] {
    font-size: 0.72rem;
    opacity: 0.4;
    font-weight: 500;
}

.bk-detail-actions[b-sqpg0dnta1] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-shrink: 0;
}

/* Detail body */
.bk-detail-body[b-sqpg0dnta1] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.bk-detail-section-label[b-sqpg0dnta1] {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.35;
    margin-bottom: 0.5rem;
}

.bk-detail-package[b-sqpg0dnta1] {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.bk-detail-message[b-sqpg0dnta1] {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.75;
    padding: 1rem 1.25rem;
    background: rgba(128,128,128,0.05);
    border-left: 3px solid rgba(128,128,128,0.2);
    border-radius: 0 8px 8px 0;
}

.bk-detail-contact-grid[b-sqpg0dnta1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bk-contact-item[b-sqpg0dnta1] {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .bk-contact-item .mud-icon-root[b-sqpg0dnta1] {
        font-size: 1rem !important;
        opacity: 0.4;
        flex-shrink: 0;
    }

.bk-contact-val[b-sqpg0dnta1] {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: color 0.15s;
}

a.bk-contact-val:hover[b-sqpg0dnta1] {
    color: var(--mud-palette-primary);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bk-desk[b-sqpg0dnta1] {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .bk-page[b-sqpg0dnta1] {
        height: auto;
        overflow: visible;
        padding: var(--space-4);
    }

    .bk-desk[b-sqpg0dnta1] {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .bk-queue[b-sqpg0dnta1] {
        max-height: 50vh;
    }

    .bk-detail[b-sqpg0dnta1] {
        min-height: 400px;
    }

    .bk-header[b-sqpg0dnta1] {
        flex-direction: column;
        align-items: flex-start;
    }

    .bk-header-right[b-sqpg0dnta1] {
        width: 100%;
        flex-wrap: wrap;
    }

    .bk-search[b-sqpg0dnta1] {
        max-width: 100%;
        flex: 1;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/CreateCampaignDialog.razor.rz.scp.css */
/* CreateCampaignDialog Landscape Layout */

[b-17fiel544f] .campaign-dialog-landscape {
    min-width: 900px;
    max-width: 1200px;
}

.campaign-layout[b-17fiel544f] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    min-height: 550px;
}

.campaign-settings[b-17fiel544f] {
    display: flex;
    flex-direction: column;
}

.campaign-editor[b-17fiel544f] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.editor-wrapper[b-17fiel544f] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.editor-wrapper[b-17fiel544f]  .rz-html-editor {
    flex: 1;
    min-height: 480px;
    height: 100%;
}

/* Fix Radzen editor content area - white text on white background issue */
.editor-wrapper[b-17fiel544f]  .rz-html-editor-content {
    background-color: #ffffff;
    color: #1a1a1a;
    min-height: 380px;
}

.editor-wrapper[b-17fiel544f]  .rz-html-editor-content p,
.editor-wrapper[b-17fiel544f]  .rz-html-editor-content span,
.editor-wrapper[b-17fiel544f]  .rz-html-editor-content div {
    color: #1a1a1a;
}

/* Editor toolbar styling for dark theme compatibility */
.editor-wrapper[b-17fiel544f]  .rz-html-editor-toolbar {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.template-vars-table[b-17fiel544f] {
    font-size: 0.85rem;
}

.template-vars-table code[b-17fiel544f] {
    background: var(--mud-palette-background-gray);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Responsive: stack on smaller screens */
@media (max-width: 960px) {
    [b-17fiel544f] .campaign-dialog-landscape {
        min-width: auto;
        width: 100%;
    }

    .campaign-layout[b-17fiel544f] {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .campaign-editor[b-17fiel544f] {
        min-height: 400px;
    }

    .editor-wrapper[b-17fiel544f]  .rz-html-editor {
        min-height: 350px;
    }

    .editor-wrapper[b-17fiel544f]  .rz-html-editor-content {
        min-height: 280px;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Customers.razor.rz.scp.css */
/* ============================================
   Customers — Contact Directory Layout
   ============================================ */

.cx-page[b-jt9twdl52n] {
    padding: var(--space-6) var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* ── Header ── */
.cx-header[b-jt9twdl52n] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(128,128,128,0.12);
    gap: var(--space-4);
}

.cx-header-left h1[b-jt9twdl52n] {
    margin: 0 0 var(--space-2) 0;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
}

.title-accent[b-jt9twdl52n] {
    display: inline-block;
    width: 4px;
    height: 1.6rem;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.cx-vitals[b-jt9twdl52n] {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding-left: 0.65rem;
}

.cx-vital-num[b-jt9twdl52n] {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mud-palette-primary);
    font-variant-numeric: tabular-nums;
}

.cx-vital-lbl[b-jt9twdl52n] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
    margin-left: 5px;
    margin-right: 14px;
}

.cx-vital-rule[b-jt9twdl52n] {
    width: 1px;
    height: 0.9rem;
    background: currentColor;
    opacity: 0.15;
    margin-right: 14px;
    align-self: center;
}

.cx-header-right[b-jt9twdl52n] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.cx-search[b-jt9twdl52n] {
    min-width: 280px;
}

/* ── Loading / Empty ── */
.cx-loading[b-jt9twdl52n], .cx-empty[b-jt9twdl52n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    min-height: 40vh;
    opacity: 0.5;
    font-size: 0.875rem;
}

/* ── Body: alpha rail + roster ── */
.cx-body[b-jt9twdl52n] {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

/* Alphabet sidebar */
.cx-alpha[b-jt9twdl52n] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: sticky;
    top: 1rem;
    flex-shrink: 0;
}

.cx-alpha-btn[b-jt9twdl52n] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mud-palette-primary);
    transition: background 0.1s, opacity 0.1s;
}

    .cx-alpha-btn:hover[b-jt9twdl52n] {
        background: rgba(37,99,235,0.1);
    }

.cx-alpha-btn--dim[b-jt9twdl52n] {
    opacity: 0.18;
    pointer-events: none;
}

/* Roster */
.cx-roster[b-jt9twdl52n] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* Letter group */
.cx-group[b-jt9twdl52n] {
}

.cx-group-letter[b-jt9twdl52n] {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.3;
    padding: 0 0 var(--space-2) 0;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    margin-bottom: 2px;
}

/* Customer row */
.cx-row[b-jt9twdl52n] {
    display: grid;
    grid-template-columns: 40px 1fr 200px 100px 70px 64px;
    align-items: center;
    gap: var(--space-4);
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.12s ease;
    position: relative;
}

    .cx-row:hover[b-jt9twdl52n] {
        background: rgba(128,128,128,0.06);
    }

        .cx-row:hover .cx-row-actions[b-jt9twdl52n] {
            opacity: 1;
        }

/* Avatar */
.cx-avatar[b-jt9twdl52n] {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

/* Name + email */
.cx-row-main[b-jt9twdl52n] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cx-row-name[b-jt9twdl52n] {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cx-row-email[b-jt9twdl52n] {
    font-size: 0.72rem;
    opacity: 0.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Phone + postal */
.cx-row-details[b-jt9twdl52n] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cx-row-phone[b-jt9twdl52n] {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.65;
}

.cx-row-postal[b-jt9twdl52n] {
    font-size: 0.7rem;
    font-family: monospace;
    font-weight: 700;
    opacity: 0.45;
    cursor: copy;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(128,128,128,0.08);
    width: fit-content;
    transition: background 0.15s, opacity 0.15s;
}

    .cx-row-postal:hover[b-jt9twdl52n] {
        background: rgba(37,99,235,0.1);
        opacity: 1;
        color: var(--mud-palette-primary);
    }

/* Role badge */
.cx-role-badge[b-jt9twdl52n] {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.cx-role-user[b-jt9twdl52n] {
    background: rgba(16,185,129,0.12);
    color: #059669;
}

.cx-role-admin[b-jt9twdl52n] {
    background: rgba(245,158,11,0.12);
    color: #d97706;
}

.cx-role-master_admin[b-jt9twdl52n] {
    background: rgba(239,68,68,0.12);
    color: #dc2626;
}

/* Member since */
.cx-row-since[b-jt9twdl52n] {
    font-size: 0.7rem;
    opacity: 0.35;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

/* Action buttons — hidden until hover */
.cx-row-actions[b-jt9twdl52n] {
    display: flex;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.15s ease;
    justify-content: flex-end;
}

.cx-action-btn[b-jt9twdl52n] {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.5;
    transition: background 0.12s, opacity 0.12s;
}

    .cx-action-btn .mud-icon-root[b-jt9twdl52n] {
        font-size: 1rem !important;
    }

    .cx-action-btn:hover[b-jt9twdl52n] {
        background: rgba(128,128,128,0.12);
        opacity: 1;
    }

.cx-action-btn--danger:hover[b-jt9twdl52n] {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .cx-row[b-jt9twdl52n] {
        grid-template-columns: 36px 1fr 140px 90px 60px 56px;
        gap: var(--space-3);
    }
}

@media (max-width: 768px) {
    .cx-page[b-jt9twdl52n] {
        padding: var(--space-4);
    }

    .cx-header[b-jt9twdl52n] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .cx-header-right[b-jt9twdl52n] {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cx-search[b-jt9twdl52n] {
        min-width: 0;
        width: 100%;
    }

    .cx-alpha[b-jt9twdl52n] {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }

    .cx-row[b-jt9twdl52n] {
        grid-template-columns: 36px 1fr 80px 56px;
    }

    .cx-row-details[b-jt9twdl52n], .cx-row-since[b-jt9twdl52n] {
        display: none;
    }

    .cx-row-actions[b-jt9twdl52n] {
        opacity: 1;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Home.razor.rz.scp.css */
/* ============================================
   Dashboard — Editorial layout
   ============================================ */

.db[b-4hkuwhl708] {
    padding: var(--space-6) var(--space-8);
    max-width: 1500px;
    margin: 0 auto;
    min-height: 100vh;
}

.db-loading[b-4hkuwhl708] {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══ HERO BAND ═══ */
.db-hero[b-4hkuwhl708] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(128,128,128,0.12);
    margin-bottom: var(--space-5);
}

.db-greeting[b-4hkuwhl708] {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

    .db-greeting em[b-4hkuwhl708] {
        font-style: normal;
        color: var(--mud-palette-primary);
    }

.db-date[b-4hkuwhl708] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-top: 6px;
}

.db-hero-right[b-4hkuwhl708] {
    text-align: right;
}

.db-revenue-label[b-4hkuwhl708] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-bottom: 4px;
}

.db-revenue-num[b-4hkuwhl708] {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--mud-palette-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

/* ═══ VITALS ROW ═══ */
.db-vitals[b-4hkuwhl708] {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--space-6);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(128,128,128,0.12);
}

.db-vital[b-4hkuwhl708] {
    flex: 1;
}

.db-vital-link[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    padding: var(--space-2) var(--space-4);
    border-radius: 8px;
    transition: background 0.15s ease;
}

    .db-vital-link:hover[b-4hkuwhl708] {
        background: rgba(128,128,128,0.07);
    }

.db-vital-num[b-4hkuwhl708] {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

    .db-vital-num.upcoming[b-4hkuwhl708] {
        color: #f59e0b;
    }

    .db-vital-num.completed[b-4hkuwhl708] {
        color: #10b981;
    }

    .db-vital-num.overdue[b-4hkuwhl708] {
        color: #ef4444;
    }

.db-vital-lbl[b-4hkuwhl708] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    opacity: 0.4;
}

.db-vital-rule[b-4hkuwhl708] {
    width: 1px;
    height: 2.5rem;
    background: rgba(128,128,128,0.15);
    flex-shrink: 0;
}

/* ═══ MAIN GRID ═══ */
.db-grid[b-4hkuwhl708] {
    display: grid;
    grid-template-columns: 1fr 280px 320px;
    grid-template-rows: auto;
    gap: var(--space-5);
}

/* ── Shared panel ── */
.db-panel[b-4hkuwhl708] {
    background: var(--mud-palette-surface);
    border-radius: 12px;
    border: 1px solid rgba(128,128,128,0.1);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.db-panel-head[b-4hkuwhl708] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.db-panel-title[b-4hkuwhl708] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.45;
}

.db-panel-sub[b-4hkuwhl708] {
    font-size: 0.7rem;
    opacity: 0.35;
    font-weight: 600;
}

.db-panel-link[b-4hkuwhl708] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mud-palette-primary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.15s;
}

    .db-panel-link:hover[b-4hkuwhl708] {
        opacity: 1;
    }

/* ── Revenue chart ── */
.db-chart[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-svg[b-4hkuwhl708] {
    width: 100%;
    height: 130px;
    overflow: visible;
}

.db-bar[b-4hkuwhl708] {
    fill: rgba(37,99,235,0.18);
    transition: fill 0.2s ease;
}

    .db-bar:hover[b-4hkuwhl708] {
        fill: rgba(37,99,235,0.5);
        cursor: pointer;
    }

.db-bar--current[b-4hkuwhl708] {
    fill: var(--mud-palette-primary);
}

    .db-bar--current:hover[b-4hkuwhl708] {
        fill: var(--mud-palette-primary-darken);
    }

.db-chart-labels[b-4hkuwhl708] {
    display: flex;
    justify-content: space-between;
    padding: 0 1px;
}

    .db-chart-labels span[b-4hkuwhl708] {
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        opacity: 0.35;
        flex: 1;
        text-align: center;
    }

.db-empty-chart[b-4hkuwhl708] {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0.35;
}

/* ── Appointments breakdown ── */
.db-appt-rows[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.db-appt-row[b-4hkuwhl708] {
}

.db-appt-meta[b-4hkuwhl708] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

.db-appt-dot[b-4hkuwhl708] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .db-appt-dot.scheduled[b-4hkuwhl708] {
        background: #f59e0b;
    }

    .db-appt-dot.completed[b-4hkuwhl708] {
        background: #10b981;
    }

    .db-appt-dot.canceled[b-4hkuwhl708] {
        background: #ef4444;
    }

.db-appt-name[b-4hkuwhl708] {
    font-size: 0.8rem;
    font-weight: 600;
    flex: 1;
}

.db-appt-count[b-4hkuwhl708] {
    font-size: 0.8rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    opacity: 0.65;
}

.db-appt-track[b-4hkuwhl708] {
    height: 5px;
    background: rgba(128,128,128,0.12);
    border-radius: 3px;
    overflow: hidden;
}

.db-appt-fill[b-4hkuwhl708] {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}

    .db-appt-fill.scheduled[b-4hkuwhl708] {
        background: #f59e0b;
    }

    .db-appt-fill.completed[b-4hkuwhl708] {
        background: #10b981;
    }

    .db-appt-fill.canceled[b-4hkuwhl708] {
        background: #ef4444;
    }

.db-appt-total[b-4hkuwhl708] {
    margin-top: 1.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.3;
    text-align: right;
}

/* ── Activity feed ── */
.db-feed[b-4hkuwhl708] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.db-feed-empty[b-4hkuwhl708] {
    font-size: 0.8rem;
    opacity: 0.35;
    padding: 1rem 0;
    text-align: center;
}

.db-feed-item[b-4hkuwhl708] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(128,128,128,0.07);
}

    .db-feed-item:last-child[b-4hkuwhl708] {
        border-bottom: none;
    }

.db-feed-icon[b-4hkuwhl708] {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .db-feed-icon .mud-icon-root[b-4hkuwhl708] {
        font-size: 0.95rem !important;
    }

    .db-feed-icon.appointment[b-4hkuwhl708] {
        background: rgba(37,99,235,0.1);
        color: #2563eb;
    }

    .db-feed-icon.invoice[b-4hkuwhl708] {
        background: rgba(16,185,129,0.1);
        color: #10b981;
    }

    .db-feed-icon.customer[b-4hkuwhl708] {
        background: rgba(245,158,11,0.1);
        color: #f59e0b;
    }

.db-feed-body[b-4hkuwhl708] {
    flex: 1;
    min-width: 0;
}

.db-feed-title[b-4hkuwhl708] {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.db-feed-meta[b-4hkuwhl708] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.db-feed-customer[b-4hkuwhl708] {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.5;
}

.db-feed-time[b-4hkuwhl708] {
    font-size: 0.67rem;
    opacity: 0.38;
    font-weight: 500;
}

.db-feed-sep[b-4hkuwhl708] {
    font-size: 0.6rem;
    opacity: 0.2;
}

.db-feed-amount[b-4hkuwhl708] {
    font-size: 0.7rem;
    font-weight: 700;
    color: #10b981;
}

.db-feed-status[b-4hkuwhl708] {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

    .db-feed-status.completed[b-4hkuwhl708], .db-feed-status.paid[b-4hkuwhl708] {
        background: rgba(16,185,129,0.12);
        color: #10b981;
    }

    .db-feed-status.scheduled[b-4hkuwhl708], .db-feed-status.open[b-4hkuwhl708] {
        background: rgba(245,158,11,0.12);
        color: #f59e0b;
    }

    .db-feed-status.overdue[b-4hkuwhl708], .db-feed-status.canceled[b-4hkuwhl708] {
        background: rgba(239,68,68,0.12);
        color: #ef4444;
    }

/* ═══ Responsive ═══ */
@media (max-width: 1200px) {
    .db-grid[b-4hkuwhl708] {
        grid-template-columns: 1fr 1fr;
    }

    .db-panel--revenue[b-4hkuwhl708] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .db[b-4hkuwhl708] {
        padding: var(--space-4);
    }

    .db-hero[b-4hkuwhl708] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .db-hero-right[b-4hkuwhl708] {
        text-align: left;
    }

    .db-revenue-num[b-4hkuwhl708] {
        font-size: 2rem;
    }

    .db-greeting[b-4hkuwhl708] {
        font-size: 1.5rem;
    }

    .db-vitals[b-4hkuwhl708] {
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .db-vital-rule[b-4hkuwhl708] {
        display: none;
    }

    .db-vital[b-4hkuwhl708] {
        flex: 1 1 40%;
    }

    .db-grid[b-4hkuwhl708] {
        grid-template-columns: 1fr;
    }
}
/* _content/iteraanhuis-portal/Components/Pages/Invoices.razor.rz.scp.css */
/* ============================================
   Invoices — The Ledger
   ============================================ */

.iv-page[b-jpz2ywsmhf] {
    padding: var(--space-5) var(--space-8) var(--space-6);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* ── Header ── */
.iv-header[b-jpz2ywsmhf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(128,128,128,0.12);
    gap: var(--space-4);
    flex-wrap: wrap;
}

.iv-header-left h1[b-jpz2ywsmhf] {
    margin: 0 0 var(--space-2) 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.title-accent[b-jpz2ywsmhf] {
    display: inline-block;
    width: 4px;
    height: 1.6rem;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Vitals */
.iv-vitals[b-jpz2ywsmhf] {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding-left: 0.65rem;
}

.iv-vital-num[b-jpz2ywsmhf] {
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.iv-vital-num--revenue[b-jpz2ywsmhf] { color: #10b981; }
.iv-vital-num--open[b-jpz2ywsmhf]    { color: #f59e0b; }
.iv-vital-num--overdue[b-jpz2ywsmhf] { color: #ef4444; }

.iv-vital-lbl[b-jpz2ywsmhf] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
    margin-left: 5px;
    margin-right: 14px;
}

.iv-vital-rule[b-jpz2ywsmhf] {
    width: 1px;
    height: 0.9rem;
    background: currentColor;
    opacity: 0.15;
    margin-right: 14px;
    align-self: center;
}

/* Header right */
.iv-header-right[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Status tabs */
.iv-status-tabs[b-jpz2ywsmhf] {
    display: flex;
    gap: 0;
    background: rgba(128,128,128,0.08);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.iv-tab[b-jpz2ywsmhf] {
    background: transparent;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
    opacity: 0.45;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.iv-tab:hover[b-jpz2ywsmhf] { opacity: 0.8; background: rgba(128,128,128,0.1); }

.iv-tab.active[b-jpz2ywsmhf] {
    background: var(--mud-palette-surface);
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.iv-tab--open.active[b-jpz2ywsmhf]    { color: #f59e0b; }
.iv-tab--overdue.active[b-jpz2ywsmhf] { color: #ef4444; }
.iv-tab--paid.active[b-jpz2ywsmhf]    { color: #10b981; }

.iv-tab-count[b-jpz2ywsmhf] {
    font-size: 0.62rem;
    font-weight: 800;
    background: rgba(128,128,128,0.12);
    padding: 1px 5px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

.iv-tab.active .iv-tab-count[b-jpz2ywsmhf] { background: rgba(128,128,128,0.12); }

.iv-search[b-jpz2ywsmhf] { max-width: 200px; }

/* ── Loading / Empty ── */
.iv-loading[b-jpz2ywsmhf], .iv-empty[b-jpz2ywsmhf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    min-height: 40vh;
    opacity: 0.4;
    font-size: 0.8rem;
}

/* ── Ledger ── */
.iv-ledger[b-jpz2ywsmhf] {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(128,128,128,0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--mud-palette-surface);
}

/* Column header row */
.iv-ledger-head[b-jpz2ywsmhf] {
    display: grid;
    grid-template-columns: 120px 1fr 140px 110px 110px 110px 90px 110px;
    padding: 8px 16px 8px 20px;
    background: rgba(128,128,128,0.04);
    border-bottom: 1px solid rgba(128,128,128,0.1);
    gap: var(--space-3);
    align-items: center;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
}

/* Row wrapper (holds row + detail panel) */
.iv-row-wrap[b-jpz2ywsmhf] {
    border-bottom: 1px solid rgba(128,128,128,0.07);
}

.iv-row-wrap:last-child[b-jpz2ywsmhf] { border-bottom: none; }

/* Main invoice row */
.iv-row[b-jpz2ywsmhf] {
    display: grid;
    grid-template-columns: 120px 1fr 140px 110px 110px 110px 90px 110px;
    padding: 0 16px 0 0;
    gap: var(--space-3);
    align-items: center;
    cursor: pointer;
    transition: background 0.12s ease;
    position: relative;
    min-height: 52px;
}

.iv-row:hover[b-jpz2ywsmhf] { background: rgba(128,128,128,0.04); }
.iv-row--expanded[b-jpz2ywsmhf] { background: rgba(128,128,128,0.03); }

/* Left accent stripe */
.iv-row-accent[b-jpz2ywsmhf] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
}

.iv-accent--open[b-jpz2ywsmhf]    { background: #f59e0b; }
.iv-accent--paid[b-jpz2ywsmhf]    { background: #10b981; }
.iv-accent--overdue[b-jpz2ywsmhf] { background: #ef4444; }

/* Column content */
.iv-col-num[b-jpz2ywsmhf] {
    padding-left: 20px;
}

.iv-invoice-num[b-jpz2ywsmhf] {
    font-size: 0.78rem;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 0.03em;
    opacity: 0.8;
}

.iv-col-customer[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.iv-avatar[b-jpz2ywsmhf] {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--mud-palette-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.iv-customer-name[b-jpz2ywsmhf] {
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iv-col-appt[b-jpz2ywsmhf] {
    min-width: 0;
}

.iv-appt-label[b-jpz2ywsmhf] {
    font-size: 0.72rem;
    opacity: 0.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.iv-appt-none[b-jpz2ywsmhf] { opacity: 0.2; font-size: 0.8rem; }

.iv-col-issued[b-jpz2ywsmhf], .iv-col-due[b-jpz2ywsmhf] {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.6;
    white-space: nowrap;
}

.iv-col-due[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.iv-overdue-date[b-jpz2ywsmhf] { color: #ef4444 !important; opacity: 1 !important; font-weight: 700 !important; }

.iv-overdue-tag[b-jpz2ywsmhf] {
    width: 16px;
    height: 16px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iv-col-amount[b-jpz2ywsmhf] {
    text-align: right;
}

.iv-amount[b-jpz2ywsmhf] {
    font-size: 0.9rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

/* Status badge */
.iv-status-badge[b-jpz2ywsmhf] {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.iv-status--open[b-jpz2ywsmhf]    { background: rgba(245,158,11,0.12); color: #d97706; }
.iv-status--paid[b-jpz2ywsmhf]    { background: rgba(16,185,129,0.12); color: #059669; }
.iv-status--overdue[b-jpz2ywsmhf] { background: rgba(239,68,68,0.12);  color: #dc2626; }

/* Action buttons */
.iv-col-actions[b-jpz2ywsmhf] {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.15s;
}

.iv-row:hover .iv-col-actions[b-jpz2ywsmhf] { opacity: 1; }
.iv-row--expanded .iv-col-actions[b-jpz2ywsmhf] { opacity: 1; }

.iv-action-btn[b-jpz2ywsmhf] {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.45;
    transition: background 0.12s, opacity 0.12s;
    flex-shrink: 0;
}

.iv-action-btn .mud-icon-root[b-jpz2ywsmhf] { font-size: 1rem !important; }
.iv-action-btn:hover[b-jpz2ywsmhf] { background: rgba(128,128,128,0.1); opacity: 1; }
.iv-action-btn--pay:hover[b-jpz2ywsmhf] { background: rgba(16,185,129,0.1); color: #059669; opacity: 1; }
.iv-action-btn--expand[b-jpz2ywsmhf] { opacity: 0.3; }
.iv-action-btn--expand:hover[b-jpz2ywsmhf] { opacity: 1; }

/* ── Detail panel ── */
.iv-detail[b-jpz2ywsmhf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-5);
    padding: 1.25rem 1.5rem 1.5rem 20px;
    background: rgba(128,128,128,0.025);
    border-top: 1px solid rgba(128,128,128,0.08);
    animation: iv-slide-in-b-jpz2ywsmhf 0.15s ease;
}

@keyframes iv-slide-in-b-jpz2ywsmhf {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.iv-detail-section[b-jpz2ywsmhf] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.iv-detail-section--wide[b-jpz2ywsmhf] {
    grid-column: 1 / -1;
}

.iv-detail-label[b-jpz2ywsmhf] {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.35;
}

/* Price table */
.iv-price-table[b-jpz2ywsmhf] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.iv-price-row[b-jpz2ywsmhf] {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    opacity: 0.7;
    font-weight: 500;
    padding: 2px 0;
}

.iv-price-row--total[b-jpz2ywsmhf] {
    font-weight: 800;
    opacity: 1;
    font-size: 0.88rem;
    padding-top: 6px;
    border-top: 1px solid rgba(128,128,128,0.15);
    margin-top: 2px;
}

/* Facts */
.iv-detail-facts[b-jpz2ywsmhf] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.iv-fact[b-jpz2ywsmhf] {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

.iv-fact-lbl[b-jpz2ywsmhf] {
    opacity: 0.4;
    font-weight: 700;
    min-width: 44px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 1px;
}

/* Detail text blocks */
.iv-detail-text[b-jpz2ywsmhf] {
    font-size: 0.82rem;
    line-height: 1.6;
    opacity: 0.7;
}

.iv-detail-text--advice[b-jpz2ywsmhf] {
    padding: 0.75rem 1rem;
    background: rgba(37,99,235,0.05);
    border-left: 3px solid rgba(37,99,235,0.2);
    border-radius: 0 6px 6px 0;
    opacity: 0.8;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .iv-ledger-head[b-jpz2ywsmhf],
    .iv-row[b-jpz2ywsmhf] {
        grid-template-columns: 100px 1fr 110px 90px 90px 100px 80px 90px;
    }
}

@media (max-width: 900px) {
    .iv-ledger-head[b-jpz2ywsmhf] { display: none; }
    .iv-row[b-jpz2ywsmhf] {
        grid-template-columns: 8px 1fr auto auto;
        grid-template-rows: auto auto;
        padding: 10px 12px 10px 16px;
        min-height: auto;
        gap: 4px 8px;
    }

    .iv-row-accent[b-jpz2ywsmhf] { width: 100%; height: 3px; top: 0; bottom: auto; position: relative; grid-column: 1 / -1; display: none; }
    .iv-col-appt[b-jpz2ywsmhf], .iv-col-issued[b-jpz2ywsmhf] { display: none; }
    .iv-col-num[b-jpz2ywsmhf] { padding-left: 0; grid-column: 1; grid-row: 1; }
    .iv-col-customer[b-jpz2ywsmhf] { grid-column: 2; grid-row: 1; }
    .iv-col-due[b-jpz2ywsmhf] { grid-column: 3; grid-row: 1; }
    .iv-col-amount[b-jpz2ywsmhf] { grid-column: 1; grid-row: 2; text-align: left; }
    .iv-col-status[b-jpz2ywsmhf] { grid-column: 2; grid-row: 2; }
    .iv-col-actions[b-jpz2ywsmhf] { grid-column: 3 / -1; grid-row: 2; opacity: 1; }

    .iv-header[b-jpz2ywsmhf] { flex-direction: column; align-items: flex-start; }
    .iv-header-right[b-jpz2ywsmhf] { width: 100%; flex-wrap: wrap; }
    .iv-search[b-jpz2ywsmhf] { max-width: 100%; flex: 1; }
    .iv-page[b-jpz2ywsmhf] { padding: var(--space-4); }
}
/* _content/iteraanhuis-portal/Components/Pages/Login.razor.rz.scp.css */
/* ============================================
   Login — Split Screen
   ============================================ */

.lg-page[b-0g5ink2cix] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ══════════════════════════════════════
   LEFT — Brand panel
   ══════════════════════════════════════ */
.lg-brand[b-0g5ink2cix] {
    position: relative;
    background: var(--mud-palette-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    overflow: hidden;
}

/* Subtle dot-grid background */
.lg-brand-grid[b-0g5ink2cix] {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Diagonal accent stripe */
.lg-brand[b-0g5ink2cix]::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.lg-brand[b-0g5ink2cix]::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

/* Brand content */
.lg-brand-content[b-0g5ink2cix] {
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: auto;
}

.lg-brand-icon[b-0g5ink2cix] {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.lg-brand-name[b-0g5ink2cix] {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.lg-brand-tagline[b-0g5ink2cix] {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Feature list */
.lg-brand-features[b-0g5ink2cix] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lg-feature[b-0g5ink2cix] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.lg-feature-dot[b-0g5ink2cix] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

/* Footer */
.lg-brand-footer[b-0g5ink2cix] {
    position: relative;
    z-index: 1;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════
   RIGHT — Form panel
   ══════════════════════════════════════ */
.lg-form-panel[b-0g5ink2cix] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--mud-palette-background);
}

.lg-form-wrap[b-0g5ink2cix] {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Heading */
.lg-form-head[b-0g5ink2cix] { margin-bottom: 0.25rem; }

.lg-form-title[b-0g5ink2cix] {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.lg-form-sub[b-0g5ink2cix] {
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Error banner */
.lg-error[b-0g5ink2cix] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #ef4444;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 600;
}

/* Fields */
.lg-fields[b-0g5ink2cix] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lg-field[b-0g5ink2cix] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lg-label[b-0g5ink2cix] {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.lg-label-row[b-0g5ink2cix] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.lg-forgot[b-0g5ink2cix] {
    font-size: 0.72rem !important;
}

/* Remember me */
.lg-remember[b-0g5ink2cix] { margin-top: -4px; }

.lg-remember-lbl[b-0g5ink2cix] {
    font-size: 0.78rem;
    opacity: 0.6;
}

/* Submit button */
.lg-submit[b-0g5ink2cix] {
    height: 48px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.02em !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .lg-page[b-0g5ink2cix] {
        grid-template-columns: 1fr;
    }

    .lg-brand[b-0g5ink2cix] {
        padding: 2rem;
        min-height: 220px;
    }

    .lg-brand-tagline[b-0g5ink2cix]  { display: none; }
    .lg-brand-features[b-0g5ink2cix] { display: none; }
    .lg-brand-content[b-0g5ink2cix]  { margin: 0; }
    .lg-brand-footer[b-0g5ink2cix]   { display: none; }

    .lg-brand-name[b-0g5ink2cix] { font-size: 1.4rem; }
    .lg-brand-icon[b-0g5ink2cix] { width: 44px; height: 44px; margin-bottom: 0.75rem; }

    .lg-form-panel[b-0g5ink2cix] { padding: 2rem 1.5rem; }
}
/* _content/iteraanhuis-portal/Components/Pages/Marketing.razor.rz.scp.css */
/* ============================================
   Marketing — The Studio
   ============================================ */

.mk-page[b-ugi7tmx0gn] {
    padding: var(--space-5) var(--space-8) var(--space-6);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* ── Header ── */
.mk-header[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(128,128,128,0.12);
    gap: var(--space-4);
    flex-wrap: wrap;
}

.mk-header-left h1[b-ugi7tmx0gn] {
    margin: 0 0 var(--space-2) 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.title-accent[b-ugi7tmx0gn] {
    display: inline-block;
    width: 4px;
    height: 1.6rem;
    background: var(--mud-palette-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Vitals */
.mk-vitals[b-ugi7tmx0gn] {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding-left: 0.65rem;
}

.mk-vital-num[b-ugi7tmx0gn] {
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.mk-vital-num--rate[b-ugi7tmx0gn] { color: #10b981; }

.mk-vital-lbl[b-ugi7tmx0gn] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
    margin-left: 5px;
    margin-right: 14px;
}

.mk-vital-rule[b-ugi7tmx0gn] {
    width: 1px;
    height: 0.9rem;
    background: currentColor;
    opacity: 0.15;
    margin-right: 14px;
    align-self: center;
}

/* Header right */
.mk-header-right[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Section tabs */
.mk-section-tabs[b-ugi7tmx0gn] {
    display: flex;
    gap: 2px;
    background: rgba(128,128,128,0.08);
    border-radius: 8px;
    padding: 3px;
}

.mk-stab[b-ugi7tmx0gn] {
    background: transparent;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
    opacity: 0.4;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.mk-stab .mud-icon-root[b-ugi7tmx0gn] { font-size: 0.9rem !important; }
.mk-stab:hover[b-ugi7tmx0gn] { opacity: 0.75; background: rgba(128,128,128,0.08); }
.mk-stab.active[b-ugi7tmx0gn] { background: var(--mud-palette-surface); opacity: 1; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

/* ── Loading ── */
.mk-loading[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

/* ══════════════════════════════════════
   CAMPAIGNS STUDIO — two-panel
   ══════════════════════════════════════ */
.mk-studio[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border: 1px solid rgba(128,128,128,0.1);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-height: 560px;
    background: var(--mud-palette-surface);
}

/* ── Queue (left) ── */
.mk-queue[b-ugi7tmx0gn] {
    border-right: 1px solid rgba(128,128,128,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mk-queue-search[b-ugi7tmx0gn] {
    padding: 12px;
    border-bottom: 1px solid rgba(128,128,128,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mk-filter-pills[b-ugi7tmx0gn] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.mk-fpill[b-ugi7tmx0gn] {
    background: none;
    border: 1px solid rgba(128,128,128,0.18);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    color: inherit;
    opacity: 0.45;
    transition: all 0.12s;
}

.mk-fpill:hover[b-ugi7tmx0gn] { opacity: 0.8; }
.mk-fpill.active[b-ugi7tmx0gn] { background: var(--mud-palette-primary); border-color: var(--mud-palette-primary); color: #fff; opacity: 1; }

.mk-queue-empty[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    flex: 1;
    opacity: 0.3;
    font-size: 0.75rem;
}

/* Campaign row */
.mk-row[b-ugi7tmx0gn] {
    display: flex;
    align-items: stretch;
    cursor: pointer;
    border-bottom: 1px solid rgba(128,128,128,0.07);
    transition: background 0.12s;
    position: relative;
    min-height: 60px;
}

.mk-row:last-child[b-ugi7tmx0gn] { border-bottom: none; }
.mk-row:hover[b-ugi7tmx0gn] { background: rgba(128,128,128,0.04); }
.mk-row--active[b-ugi7tmx0gn] { background: rgba(var(--mud-palette-primary-rgb), 0.05) !important; }

.mk-row-accent[b-ugi7tmx0gn] {
    width: 3px;
    flex-shrink: 0;
    align-self: stretch;
}

.mk-accent--draft[b-ugi7tmx0gn]     { background: #f59e0b; }
.mk-accent--scheduled[b-ugi7tmx0gn] { background: #3b82f6; }
.mk-accent--sent[b-ugi7tmx0gn]      { background: #10b981; }

.mk-row-body[b-ugi7tmx0gn] {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.mk-row-top[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
}

.mk-row-subject[b-ugi7tmx0gn] {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.mk-row-age[b-ugi7tmx0gn] {
    font-size: 0.62rem;
    opacity: 0.35;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 1px;
}

.mk-row-mid[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mk-row-recipients[b-ugi7tmx0gn] {
    font-size: 0.65rem;
    opacity: 0.4;
}

/* Status pill */
.mk-status-pill[b-ugi7tmx0gn] {
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.mk-status--draft[b-ugi7tmx0gn]     { background: rgba(245,158,11,0.12);  color: #d97706; }
.mk-status--scheduled[b-ugi7tmx0gn] { background: rgba(59,130,246,0.12);  color: #2563eb; }
.mk-status--sent[b-ugi7tmx0gn]      { background: rgba(16,185,129,0.12);  color: #059669; }

/* ── Detail (right) ── */
.mk-detail[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mk-detail--empty[b-ugi7tmx0gn] {
    align-items: center;
    justify-content: center;
}

.mk-detail-placeholder[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    opacity: 0.25;
    font-size: 0.75rem;
}

/* Detail head */
.mk-detail-head[b-ugi7tmx0gn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(128,128,128,0.08);
    gap: var(--space-3);
    flex-wrap: wrap;
}

.mk-detail-subject[b-ugi7tmx0gn] {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.mk-detail-meta[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mk-detail-time[b-ugi7tmx0gn] {
    font-size: 0.72rem;
    opacity: 0.4;
}

.mk-detail-actions[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

/* Stats strip */
.mk-stats-strip[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 1.5rem;
    background: rgba(128,128,128,0.025);
    border-bottom: 1px solid rgba(128,128,128,0.07);
}

.mk-stat[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 20px 0 0;
}

.mk-stat:first-child[b-ugi7tmx0gn] { padding-left: 0; }

.mk-stat-num[b-ugi7tmx0gn] {
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.mk-stat-lbl[b-ugi7tmx0gn] {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.35;
}

.mk-stat-rule[b-ugi7tmx0gn] {
    width: 1px;
    height: 2rem;
    background: rgba(128,128,128,0.15);
    margin: 0 20px 0 0;
    flex-shrink: 0;
}

/* Email preview */
.mk-detail-label[b-ugi7tmx0gn] {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.3;
    padding: 1rem 1.5rem 0.5rem;
}

.mk-email-preview[b-ugi7tmx0gn] {
    margin: 0 1.5rem 1.5rem;
    border: 1px solid rgba(128,128,128,0.12);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.mk-email-subject-line[b-ugi7tmx0gn] {
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(128,128,128,0.05);
    border-bottom: 1px solid rgba(128,128,128,0.1);
    color: #000;
}

.mk-email-body[b-ugi7tmx0gn] {
    padding: 16px;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #333;
    max-height: 320px;
    overflow-y: auto;
}

/* ══════════════════════════════════════
   AUDIENCE
   ══════════════════════════════════════ */
.mk-audience[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mk-audience-card[b-ugi7tmx0gn] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(128,128,128,0.1);
    border-radius: 10px;
    background: var(--mud-palette-surface);
}

.mk-audience-card--all[b-ugi7tmx0gn] { border-left: 3px solid var(--mud-palette-primary); }

.mk-audience-icon[b-ugi7tmx0gn] {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(var(--mud-palette-primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mud-palette-primary);
    flex-shrink: 0;
}

.mk-audience-info[b-ugi7tmx0gn] { flex: 1; min-width: 0; }

.mk-audience-name[b-ugi7tmx0gn] {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.mk-audience-desc[b-ugi7tmx0gn] {
    font-size: 0.72rem;
    opacity: 0.4;
}

.mk-audience-count[b-ugi7tmx0gn] {
    font-size: 1.4rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    opacity: 0.6;
    min-width: 48px;
    text-align: right;
}



/* ══════════════════════════════════════
   ANALYTICS
   ══════════════════════════════════════ */
.mk-analytics[b-ugi7tmx0gn] {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.mk-analytics-vitals[b-ugi7tmx0gn] {
    display: flex;
    gap: 0;
    background: var(--mud-palette-surface);
    border: 1px solid rgba(128,128,128,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.mk-analytics-vital[b-ugi7tmx0gn] {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(128,128,128,0.08);
}

.mk-analytics-vital:last-child[b-ugi7tmx0gn] { border-right: none; }

.mk-analytics-num[b-ugi7tmx0gn] {
    font-size: 1.6rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.mk-analytics-num.mk-rate[b-ugi7tmx0gn] { color: #10b981; }

.mk-analytics-lbl[b-ugi7tmx0gn] {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.35;
}

.mk-analytics-label[b-ugi7tmx0gn] {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.35;
}

/* Analytics table */
.mk-analytics-table[b-ugi7tmx0gn] {
    background: var(--mud-palette-surface);
    border: 1px solid rgba(128,128,128,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.mk-at-head[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: 1fr 100px 90px 110px;
    padding: 8px 16px;
    background: rgba(128,128,128,0.04);
    border-bottom: 1px solid rgba(128,128,128,0.1);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.4;
    gap: var(--space-3);
}

.mk-at-row[b-ugi7tmx0gn] {
    display: grid;
    grid-template-columns: 1fr 100px 90px 110px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(128,128,128,0.06);
    gap: var(--space-3);
    align-items: center;
    transition: background 0.1s;
    font-size: 0.78rem;
}

.mk-at-row:last-child[b-ugi7tmx0gn] { border-bottom: none; }
.mk-at-row:hover[b-ugi7tmx0gn] { background: rgba(128,128,128,0.03); }

.mk-at-subject[b-ugi7tmx0gn] {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mk-at-num[b-ugi7tmx0gn] { font-variant-numeric: tabular-nums; opacity: 0.6; }
.mk-at-date[b-ugi7tmx0gn] { font-size: 0.72rem; opacity: 0.4; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .mk-studio[b-ugi7tmx0gn] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .mk-queue[b-ugi7tmx0gn] { border-right: none; border-bottom: 1px solid rgba(128,128,128,0.1); max-height: 280px; overflow-y: auto; }

    .mk-analytics-vitals[b-ugi7tmx0gn] { flex-wrap: wrap; }
    .mk-analytics-vital[b-ugi7tmx0gn] { flex: 1 1 45%; }

    .mk-header-right[b-ugi7tmx0gn] { flex-wrap: wrap; }
    .mk-page[b-ugi7tmx0gn] { padding: var(--space-4); }
}
/* _content/iteraanhuis-portal/Components/Pages/Settings.razor.rz.scp.css */
/* ============================================
   Settings — The Panel
   ============================================ */

.st-page[b-3wpm9kk3lw] {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
    max-width: 960px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-8);
    gap: var(--space-8);
    align-items: start;
}

/* ── Loading ── */
.st-loading[b-3wpm9kk3lw] {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

/* ══════════════════════════════════════
   LEFT RAIL
   ══════════════════════════════════════ */
.st-rail[b-3wpm9kk3lw] {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Identity block */
.st-identity[b-3wpm9kk3lw] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px 0 4px;
    margin-bottom: 12px;
}

.st-avatar[b-3wpm9kk3lw] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--mud-palette-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.st-identity-info[b-3wpm9kk3lw] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.st-identity-name[b-3wpm9kk3lw] {
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.st-rail-divider[b-3wpm9kk3lw] {
    height: 1px;
    background: rgba(128,128,128,0.1);
    margin: 4px 0 8px;
}

/* Nav items */
.st-nav-item[b-3wpm9kk3lw] {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: inherit;
    opacity: 0.45;
    transition: background 0.12s, opacity 0.12s;
    text-align: left;
    position: relative;
}

.st-nav-item .mud-icon-root[b-3wpm9kk3lw] { font-size: 1rem !important; flex-shrink: 0; }
.st-nav-item:hover[b-3wpm9kk3lw]  { background: rgba(128,128,128,0.07); opacity: 0.8; }
.st-nav-item.active[b-3wpm9kk3lw] { background: rgba(var(--mud-palette-primary-rgb), 0.08); opacity: 1; color: var(--mud-palette-primary); }

.st-nav-item--danger.active[b-3wpm9kk3lw] { background: rgba(239,68,68,0.08); color: #ef4444; }
.st-nav-item--danger:hover[b-3wpm9kk3lw]  { background: rgba(239,68,68,0.05); }



/* ══════════════════════════════════════
   RIGHT CONTENT
   ══════════════════════════════════════ */
.st-content[b-3wpm9kk3lw] {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

/* Section */
.st-section[b-3wpm9kk3lw] {
    padding: 0 0 var(--space-6) 0;
}

.st-section--danger[b-3wpm9kk3lw] {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: 12px;
    background: rgba(239,68,68,0.02);
    margin-bottom: var(--space-6);
}

.st-section--danger .st-section-head h2[b-3wpm9kk3lw] { color: #ef4444; }

.st-section-head[b-3wpm9kk3lw] {
    margin-bottom: 1.5rem;
}

.st-section-head h2[b-3wpm9kk3lw] {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.st-section-head p[b-3wpm9kk3lw] {
    font-size: 0.75rem;
    opacity: 0.4;
    margin: 0;
}

/* Sudo status badge inline */
.st-sudo-status[b-3wpm9kk3lw] {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 2px 7px;
    border-radius: 4px;
}

.st-sudo-status--ok[b-3wpm9kk3lw]   { background: rgba(16,185,129,0.12); color: #059669; }
.st-sudo-status--warn[b-3wpm9kk3lw] { background: rgba(245,158,11,0.12);  color: #d97706; }

/* Divider between sections */
.st-divider[b-3wpm9kk3lw] {
    height: 1px;
    background: rgba(128,128,128,0.1);
    margin: 0 0 var(--space-6) 0;
}

/* Fields */
.st-fields[b-3wpm9kk3lw] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: var(--space-5);
}

.st-field-row[b-3wpm9kk3lw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Footer with save button */
.st-section-footer[b-3wpm9kk3lw] {
    display: flex;
    justify-content: flex-end;
}

/* Error */
.st-error[b-3wpm9kk3lw] {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(239,68,68,0.07);
    border-radius: 6px;
    border-left: 3px solid #ef4444;
}

/* Sudo loading / readonly */
.st-sudo-loading[b-3wpm9kk3lw] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    opacity: 0.5;
    margin-bottom: var(--space-4);
}

.st-sudo-readonly[b-3wpm9kk3lw] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    opacity: 0.5;
    padding: 12px 0;
}

.st-sudo-notice[b-3wpm9kk3lw] {
    font-size: 0.75rem;
    color: #d97706;
    background: rgba(245,158,11,0.08);
    border-left: 3px solid #f59e0b;
    border-radius: 0 6px 6px 0;
    padding: 8px 12px;
    margin-bottom: 1rem;
}

/* Account info grid */
.st-info-grid[b-3wpm9kk3lw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.st-info-item[b-3wpm9kk3lw] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.st-info-lbl[b-3wpm9kk3lw] {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.35;
}

.st-info-val[b-3wpm9kk3lw] {
    font-size: 0.82rem;
    font-weight: 500;
}

.st-info-val--mono[b-3wpm9kk3lw] {
    font-family: monospace;
    font-size: 0.72rem;
    opacity: 0.5;
    word-break: break-all;
}

/* Role badges */
.st-role-badge[b-3wpm9kk3lw] {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 2px 7px;
    border-radius: 4px;
    width: fit-content;
}

.st-role--master_admin[b-3wpm9kk3lw] { background: rgba(239,68,68,0.12);  color: #dc2626; }
.st-role--admin[b-3wpm9kk3lw]        { background: rgba(245,158,11,0.12); color: #d97706; }
.st-role--user[b-3wpm9kk3lw]         { background: rgba(16,185,129,0.12); color: #059669; }

/* ── Responsive ── */
@media (max-width: 720px) {
    .st-page[b-3wpm9kk3lw] {
        grid-template-columns: 1fr;
        padding: var(--space-4);
        gap: var(--space-4);
    }

    .st-rail[b-3wpm9kk3lw] {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        padding-bottom: var(--space-4);
        border-bottom: 1px solid rgba(128,128,128,0.1);
    }

    .st-identity[b-3wpm9kk3lw] { display: none; }
    .st-rail-divider[b-3wpm9kk3lw] { display: none; }

    .st-nav-item[b-3wpm9kk3lw] {
        flex: 0 0 auto;
        width: auto;
        padding: 6px 12px;
    }

    .st-field-row[b-3wpm9kk3lw] { grid-template-columns: 1fr; }
    .st-info-grid[b-3wpm9kk3lw] { grid-template-columns: 1fr; }
}
/* _content/iteraanhuis-portal/Components/Shared/Card.razor.rz.scp.css */
/* Card.razor.css - Let MudBlazor handle the theming */

.card[b-qtmk6j70e9] {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* Light theme - minimal */
.card[b-qtmk6j70e9] {
    box-shadow: none;
    border: 1px solid;
    border-radius: 12px;
}

.card:hover[b-qtmk6j70e9] {
    transform: translateY(-1px);
}

/* Dark theme - add shadows */
.mud-theme-dark .card[b-qtmk6j70e9] {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
}

.mud-theme-dark .card:hover[b-qtmk6j70e9] {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.5);
}

/* Card sections */
.card-header[b-qtmk6j70e9] {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-content[b-qtmk6j70e9] {
    padding: 1.5rem;
}

.card-footer[b-qtmk6j70e9] {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title[b-qtmk6j70e9] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.card-subtitle[b-qtmk6j70e9] {
    margin: 0.5rem 0 0 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Clickable */
.card.clickable[b-qtmk6j70e9] {
    cursor: pointer;
}

.card.clickable:hover[b-qtmk6j70e9] {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .card-header[b-qtmk6j70e9],
    .card-content[b-qtmk6j70e9],
    .card-footer[b-qtmk6j70e9] {
        padding: 1rem;
    }
}
/* _content/iteraanhuis-portal/Components/Shared/DataTable.razor.rz.scp.css */
/* DataTable.razor.css - Component-scoped styles */

.data-table-container[b-toyry8tho6] {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

/* Empty state styling */
.empty-state[b-toyry8tho6] {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    color: var(--gray-500);
}

.empty-icon[b-toyry8tho6] {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-4);
    opacity: 0.6;
}

.empty-state p[b-toyry8tho6] {
    margin: 0;
    font-size: var(--text-lg);
}

/* Table styling */
.data-table[b-toyry8tho6] {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

/* Header styling */
.data-table thead[b-toyry8tho6] {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-bottom: 2px solid var(--gray-200);
}

.data-table th[b-toyry8tho6] {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    white-space: nowrap;
}

/* Sortable column styling */
.data-table th.sortable[b-toyry8tho6] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.data-table th.sortable:hover[b-toyry8tho6] {
    background: var(--gray-200);
}

/* Sort indicators */
.sort-indicator[b-toyry8tho6] {
    margin-left: var(--space-2);
    font-size: var(--text-sm);
    opacity: 0.7;
}

.sort-indicator.asc[b-toyry8tho6]::before {
    content: "↑";
}

.sort-indicator.desc[b-toyry8tho6]::before {
    content: "↓";
}

/* Body styling */
.data-table tbody tr[b-toyry8tho6] {
    border-bottom: 1px solid var(--gray-100);
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover[b-toyry8tho6] {
    background: var(--gray-50);
}

.data-table tbody tr:last-child[b-toyry8tho6] {
    border-bottom: none;
}

.data-table td[b-toyry8tho6] {
    padding: var(--space-4) var(--space-6);
    color: var(--gray-900);
    font-size: var(--text-base);
    vertical-align: middle;
}

/* Actions column */
.actions-column[b-toyry8tho6] {
    width: 120px;
    text-align: center;
}

.actions-cell[b-toyry8tho6] {
    text-align: center;
    white-space: nowrap;
}

.actions-cell button[b-toyry8tho6] {
    margin: 0 var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.actions-cell button:hover[b-toyry8tho6] {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.actions-cell button.danger[b-toyry8tho6] {
    color: var(--error-color);
    border-color: var(--error-color);
}

.actions-cell button.danger:hover[b-toyry8tho6] {
    background: var(--error-color);
    color: var(--white);
}

.actions-cell button.primary[b-toyry8tho6] {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.actions-cell button.primary:hover[b-toyry8tho6] {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive design */
@media (max-width: 768px) {
    .data-table-container[b-toyry8tho6] {
        overflow-x: auto;
    }

    .data-table th[b-toyry8tho6],
    .data-table td[b-toyry8tho6] {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    .actions-cell button[b-toyry8tho6] {
        padding: var(--space-1) var(--space-2);
        font-size: 0.75rem;
    }
}

/* Loading state (if you want to add loading later) */
.data-table.loading[b-toyry8tho6] {
    opacity: 0.6;
    pointer-events: none;
}

.data-table.loading tbody tr:hover[b-toyry8tho6] {
    background: transparent;
}
