/* /Components/ChatWindow.razor.rz.scp.css */
.chat-window[b-hy9g9vitcf] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.96));
    border: 1px solid var(--studifyx-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(79, 70, 229, 0.08);
}

.chat-header[b-hy9g9vitcf] {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--studifyx-border);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(34, 197, 94, 0.08));
}

.chat-header h2[b-hy9g9vitcf] {
    margin: 0;
    color: var(--studifyx-text-primary);
    font-size: 1.15rem;
}

.chat-messages[b-hy9g9vitcf] {
    /* 1. Flexbox voor de layout binnen het chat-venster */
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem;

    /* 2. Scroll-instellingen (Cruciaal voor de JS scrollToBottom) */
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;

    /* 3. Visuele styling */
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(249, 250, 251, 0.75), rgba(255, 255, 255, 0.92));
}

.chat-messages.is-empty[b-hy9g9vitcf] {
    flex: 0 0 auto;
}

/* Dark mode variant (Zorg dat deze alleen de kleuren aanpast, niet de scroll-logica) */
html[data-dark="true"] .chat-messages[b-hy9g9vitcf] {
    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(31, 41, 55, 0.78), rgba(17, 24, 39, 0.92));
}

.empty-chat[b-hy9g9vitcf],
.error-banner[b-hy9g9vitcf] {
    color: var(--studifyx-text-primary);
}

.empty-chat[b-hy9g9vitcf] {
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-align: center;
}

.empty-chat-mascot[b-hy9g9vitcf] {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.chat-input-area[b-hy9g9vitcf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--studifyx-border);
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.92);
}

.btn-upload-doc[b-hy9g9vitcf] {
    border: 1px solid var(--studifyx-border);
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--studifyx-text-primary);
    background: var(--studifyx-bg);
    cursor: pointer;
    white-space: nowrap;
}

.btn-upload-doc:hover[b-hy9g9vitcf] {
    border-color: var(--studifyx-primary);
}

.btn-upload-image[b-hy9g9vitcf] {
    border: 1px solid color-mix(in srgb, var(--studifyx-primary) 30%, var(--studifyx-border));
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--studifyx-primary);
    background: color-mix(in srgb, var(--studifyx-primary) 8%, var(--studifyx-bg));
    cursor: pointer;
    white-space: nowrap;
}

.btn-upload-image:hover[b-hy9g9vitcf] {
    border-color: var(--studifyx-primary);
    background: color-mix(in srgb, var(--studifyx-primary) 12%, var(--studifyx-bg));
}

.chat-input[b-hy9g9vitcf] {
    flex: 1;
    border: 1px solid var(--studifyx-border);
    border-radius: 1.2rem;
    padding: 0.8rem 1rem;
    resize: none;
    overflow-y: auto;
    max-height: 8rem;
    line-height: 1.5;
    font-family: inherit;
    font-size: inherit;
    color: var(--studifyx-text-primary);
    background: var(--studifyx-bg);
}

.chat-input:focus[b-hy9g9vitcf] {
    outline: none;
    border-color: var(--studifyx-primary);
}

.btn-send[b-hy9g9vitcf] {
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-weight: 800;
}

.btn-send:hover[b-hy9g9vitcf] {
    background: var(--studifyx-accent);
}

.chat-upload-message[b-hy9g9vitcf],
.chat-upload-error[b-hy9g9vitcf] {
    margin: 0.35rem 1rem 0;
    font-size: 0.9rem;
}

.chat-upload-message[b-hy9g9vitcf] {
    color: var(--studifyx-text-secondary);
}

.chat-upload-error[b-hy9g9vitcf] {
    color: #b42318;
}

.chat-image-preview-card[b-hy9g9vitcf] {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    align-items: center;
    gap: 0.85rem;
    margin: 0.55rem 1rem 0;
    padding: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--studifyx-primary) 18%, var(--studifyx-border));
    border-radius: 18px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--studifyx-primary) 10%, white), rgba(255, 255, 255, 0.96));
}

.chat-image-preview[b-hy9g9vitcf] {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(79, 70, 229, 0.16);
}

.chat-image-preview-meta[b-hy9g9vitcf] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    color: var(--studifyx-text-primary);
}

.chat-image-preview-meta strong[b-hy9g9vitcf],
.chat-image-preview-meta span[b-hy9g9vitcf] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-image-preview-meta span[b-hy9g9vitcf] {
    color: var(--studifyx-text-secondary);
    font-size: 0.92rem;
}

.chat-image-remove[b-hy9g9vitcf] {
    border: 1px solid var(--studifyx-border);
    background: var(--studifyx-bg);
    color: var(--studifyx-text-primary);
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.chat-image-remove:hover[b-hy9g9vitcf] {
    border-color: #b42318;
    color: #b42318;
}

html[data-dark="true"] .chat-window[b-hy9g9vitcf] {
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.96), rgba(17, 24, 39, 0.96));
    box-shadow: 0 24px 60px rgba(3, 7, 18, 0.4);
}

html[data-dark="true"] .chat-header[b-hy9g9vitcf] {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.14), rgba(74, 222, 128, 0.12));
}

html[data-dark="true"] .chat-messages[b-hy9g9vitcf] {
    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(31, 41, 55, 0.78), rgba(17, 24, 39, 0.92));
}

html[data-dark="true"] .chat-input-area[b-hy9g9vitcf] {
    background: rgba(17, 24, 39, 0.92);
}

html[data-dark="true"] .chat-image-preview-card[b-hy9g9vitcf] {
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.96));
    border-color: rgba(129, 140, 248, 0.24);
}

html[data-dark="true"] .chat-input[b-hy9g9vitcf]::placeholder {
    color: var(--studifyx-text-secondary);
}

/* F041: chip-rij (desktop: rij naast elkaar in input-area) */
.chat-input-chips[b-hy9g9vitcf] {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.chat-input-row[b-hy9g9vitcf] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex: 1;
}

@media (max-width: 768px) {

    /* Verberg de interne ChatWindow-header op mobile
       (ConversationDetail toont zijn eigen mobile-chat-header) */
    .chat-header[b-hy9g9vitcf] {
        display: none;
    }

    /* chat-window: geen border/shadow/radius — vult de volledige breedte */
    .chat-window[b-hy9g9vitcf] {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    /* Input-area: twee rijen op mobile */
    .chat-input-area[b-hy9g9vitcf] {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.6rem 0.75rem 0.5rem;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    }

    /* Rij 1: chips kleiner */
    .btn-upload-doc[b-hy9g9vitcf],
    .btn-upload-image[b-hy9g9vitcf] {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.3rem 0.7rem;
        font-size: 0.72rem;
        width: auto;
        border-radius: 999px;
    }

    /* Rij 2: input + send naast elkaar */
    .chat-input-row[b-hy9g9vitcf] {
        flex: unset;
        width: 100%;
    }

    .chat-input[b-hy9g9vitcf] {
        flex: 1;
        border-radius: var(--studifyx-radius);
        min-height: 42px;
        max-height: 120px;
        padding: 0.6rem 0.8rem;
    }

    /* Send: ronde iconknop — NIET meer full-width */
    .btn-send[b-hy9g9vitcf] {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0;
        box-shadow: 0 2px 8px rgba(36, 56, 200, 0.25);
        transition: background 0.15s, transform 0.1s;
    }

    .btn-send[b-hy9g9vitcf]::after {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    .btn-send:hover[b-hy9g9vitcf] {
        transform: scale(1.05);
    }

    .btn-send:disabled[b-hy9g9vitcf] {
        opacity: 0.6;
        transform: none;
    }

    /* Image preview card: kleinere layout */
    .chat-image-preview-card[b-hy9g9vitcf] {
        grid-template-columns: 56px 1fr auto;
        margin: 0;
    }

    .chat-image-preview[b-hy9g9vitcf] {
        width: 56px;
        height: 56px;
    }

    /* Lege chat */
    .chat-messages.is-empty[b-hy9g9vitcf] {
        flex: 0 0 auto;
        min-height: 120px;
    }

    .empty-chat[b-hy9g9vitcf] {
        padding: 0.5rem 0.75rem;
        gap: 0.4rem;
    }

    .empty-chat-mascot[b-hy9g9vitcf] {
        width: 140px;
        height: auto;
    }

}
/* /Components/ConversationItem.razor.rz.scp.css */
.conversation-item[b-yqwv9j2nz1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--studifyx-border);
    background: var(--studifyx-bg-soft);
    padding: 0.75rem;
    cursor: pointer;
}

.conversation-item:hover[b-yqwv9j2nz1] {
    background: rgba(79, 70, 229, 0.12);
}

.conversation-item.selected[b-yqwv9j2nz1] {
    border-left: 3px solid var(--studifyx-primary);
}

.conversation-item-content[b-yqwv9j2nz1] {
    min-width: 0;
    flex: 1;
}

.conversation-item-content h4[b-yqwv9j2nz1] {
    margin: 0;
    color: var(--studifyx-text-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.conversation-created[b-yqwv9j2nz1] {
    margin: 0.2rem 0 0;
    color: var(--studifyx-text-primary);
    font-size: 0.8rem;
}

.btn-delete[b-yqwv9j2nz1] {
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-primary);
    border: 1px solid var(--studifyx-primary);
    border-radius: 6px;
    padding: 0.35rem 0.55rem;
    cursor: pointer;
}

.btn-delete:hover[b-yqwv9j2nz1] {
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
}

html[data-dark="true"] .conversation-item:hover[b-yqwv9j2nz1] {
    background: rgba(129, 140, 248, 0.2);
}
/* /Components/ConversationList.razor.rz.scp.css */
.conversation-list[b-leag6crjz8] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--studifyx-bg-soft);
    border: 1px solid var(--studifyx-border);
    border-radius: 6px;
}

.conversation-header[b-leag6crjz8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--studifyx-border);
}

.conversation-header h3[b-leag6crjz8] {
    margin: 0;
    color: var(--studifyx-text-primary);
    font-size: 1rem;
}

.btn-new-conversation[b-leag6crjz8] {
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
}

.btn-new-conversation:hover[b-leag6crjz8] {
    background: var(--studifyx-text-primary);
}

.conversations-list[b-leag6crjz8] {
    display: grid;
}

.loading[b-leag6crjz8],
.empty-state[b-leag6crjz8],
.error-message[b-leag6crjz8] {
    padding: 0.75rem;
    color: var(--studifyx-text-primary);
}
/* /Components/FolderItem.razor.rz.scp.css */
.folder-item[b-8kfhup6gbu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--studifyx-border);
    border-radius: 6px;
    background: var(--studifyx-bg-soft);
    padding: 0.85rem;
}

.folder-item:hover[b-8kfhup6gbu] {
    background: rgba(79, 70, 229, 0.12);
}

.folder-link[b-8kfhup6gbu] {
    text-decoration: none;
    color: var(--studifyx-text-primary);
    flex: 1;
}

.folder-link h3[b-8kfhup6gbu] {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.folder-link p[b-8kfhup6gbu] {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
}

.btn-danger[b-8kfhup6gbu] {
    background: var(--studifyx-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
}

.btn-danger:hover[b-8kfhup6gbu] {
    background: var(--studifyx-accent);
}

html[data-dark="true"] .folder-item:hover[b-8kfhup6gbu] {
    background: rgba(129, 140, 248, 0.2);
}
/* /Components/FolderList.razor.rz.scp.css */
.folder-list[b-2hgaldncgg] {
    display: grid;
    gap: 0.75rem;
}
/* /Components/LoginDisplay.razor.rz.scp.css */
.btn-primary[b-f4noxhn9ox],
.btn-secondary[b-f4noxhn9ox] {
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary[b-f4noxhn9ox] {
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
    border: 1px solid var(--studifyx-primary);
}

.btn-primary:hover[b-f4noxhn9ox] {
    background: var(--studifyx-text-primary);
    border-color: var(--studifyx-text-primary);
}

.btn-secondary[b-f4noxhn9ox] {
    background: var(--studifyx-bg);
    color: var(--studifyx-primary);
    border: 1px solid var(--studifyx-primary);
}

.btn-secondary:hover[b-f4noxhn9ox] {
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
}

.loading-text[b-f4noxhn9ox] {
    color: var(--studifyx-bg);
    font-size: 0.9rem;
}
/* /Components/MessageBubble.razor.rz.scp.css */
/* Markdown-lijsten netjes inspringen en BOLLETJES tonen */
.message-bubble ul[b-78n1re3twm] {
    list-style-type: disc !important;
    margin-left: 1.5em !important;
    padding-left: 1.2em !important;
    display: block !important;
}

.message-bubble ol[b-78n1re3twm] {
    list-style-type: decimal !important;
    margin-left: 1.5em !important;
    padding-left: 1.2em !important;
    display: block !important;
}

.message-bubble li[b-78n1re3twm] {
    display: list-item !important; /* Cruciaal voor het bolletje! */
    margin-bottom: 0.25em;
}

/* Zorg dat paragrafen in de bubbel onder elkaar staan nu we white-space: normal gebruiken */
.message-bubble p[b-78n1re3twm] {
    margin-bottom: 0.5rem;
    display: block;
}

.message-row[b-78n1re3twm] {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    max-width: 100%;
}

.message-row.user[b-78n1re3twm] {
    flex-direction: row-reverse;
}

.message-avatar[b-78n1re3twm] {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.14);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.message-avatar.user[b-78n1re3twm] {
    background: linear-gradient(135deg, var(--studifyx-primary), #635bff);
    color: #fff;
    border-color: transparent;
}

.message-avatar span[b-78n1re3twm] {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.message-avatar-image[b-78n1re3twm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fyxo-avatar-large[b-78n1re3twm] {
    transform: scale(1.3);
}

.typing-indicator[b-78n1re3twm] {
    display: inline-block;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: #635bff;
    animation: typing-blink 1.2s infinite steps(1, end);
}
.typing-indicator span[b-78n1re3twm] {
    opacity: 0.3;
    animation: typing-dot-b-78n1re3twm 1.2s infinite;
}
.typing-indicator span:nth-child(1)[b-78n1re3twm] { animation-delay: 0s; }
.typing-indicator span:nth-child(2)[b-78n1re3twm] { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3)[b-78n1re3twm] { animation-delay: 0.4s; }

@keyframes typing-dot-b-78n1re3twm {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.message-stack[b-78n1re3twm] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    max-width: min(72ch, 78%);
}

.message-stack.user[b-78n1re3twm] {
    align-items: flex-end;
}

.message-author[b-78n1re3twm],
.message-time[b-78n1re3twm] {
    font-size: 0.74rem;
    color: var(--studifyx-text-secondary);
    padding-inline: 0.35rem;
}

.message-author[b-78n1re3twm] {
    font-weight: 800;
}

.message-bubble[b-78n1re3twm] {
    position: relative;
    border-radius: 20px;
    padding: 0.85rem 1rem;
    line-height: 1.55;
    word-break: break-word;
    white-space: normal;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.message-bubble[b-78n1re3twm]::after {
    content: "";
    position: absolute;
    bottom: 10px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}

.message-bubble.user[b-78n1re3twm] {
    background: linear-gradient(135deg, var(--studifyx-primary), #635bff);
    color: var(--studifyx-bg);
    border-bottom-right-radius: 8px;
}

.message-bubble.user[b-78n1re3twm]::after {
    right: -5px;
    background: #635bff;
}

.message-bubble.assistant[b-78n1re3twm] {
    background: rgba(255, 255, 255, 0.95);
    color: var(--studifyx-text-primary);
    border: 1px solid rgba(79, 70, 229, 0.12);
    border-bottom-left-radius: 8px;
}

.message-bubble.assistant[b-78n1re3twm]::after {
    left: -7px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(79, 70, 229, 0.12);
    border-bottom: 1px solid rgba(79, 70, 229, 0.12);
}

html[data-dark="true"] .message-avatar[b-78n1re3twm] {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(129, 140, 248, 0.24);
    box-shadow: 0 12px 24px rgba(3, 7, 18, 0.3);
}

html[data-dark="true"] .message-bubble.assistant[b-78n1re3twm] {
    background: rgba(31, 41, 55, 0.95);
    color: var(--studifyx-text-primary);
    border: 1px solid rgba(129, 140, 248, 0.24);
}

html[data-dark="true"] .message-bubble.assistant[b-78n1re3twm]::after {
    background: rgba(31, 41, 55, 0.95);
    border-left: 1px solid rgba(129, 140, 248, 0.24);
    border-bottom: 1px solid rgba(129, 140, 248, 0.24);
}

@media (max-width: 768px) {

    /* Bubbels iets smaller voor meer leesruimte */
    .message-stack[b-78n1re3twm] {
        max-width: 82%;
    }

    /* Avatars verkleinen zodat er meer ruimte voor de berichten is */
    .message-avatar[b-78n1re3twm] {
        width: 44px;
        height: 44px;
    }

    /* Fyxo avatar: overflow visible zodat mascot wat uitsteekt */
    .message-avatar:not(.user)[b-78n1re3twm] {
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .message-avatar:not(.user) .message-avatar-image[b-78n1re3twm] {
        width: 56px;
        height: auto;
        object-fit: contain;
    }

    /* Gebruikersavatar: netjes geclipped in cirkel */
    .message-avatar.user[b-78n1re3twm] {
        overflow: hidden;
        border: 2px solid var(--studifyx-accent);
        background: #dbeafe;
    }

    .message-avatar.user .message-avatar-image[b-78n1re3twm] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Fallback als er geen avatar is */
    .message-avatar.user span[b-78n1re3twm] {
        font-size: 0.6rem;
        font-weight: 900;
    }
}

/* Gebruik ::deep om de lijstjes van Markdig te stylen */
[b-78n1re3twm] .message-bubble ol {
    list-style-type: decimal !important;
    margin-left: 2rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

[b-78n1re3twm] .message-bubble ul {
    list-style-type: disc !important;
    margin-left: 2rem !important;
    padding-left: 0.5rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

[b-78n1re3twm] .message-bubble li {
    display: list-item !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.5 !important;
}
/* /Components/Public/HomeAiExample.razor.rz.scp.css */
/* Fyxo section */
.pub-fyxo-section[b-h2nwm4csj5] {
    background: linear-gradient(135deg, #0f3480 0%, #1a4fa0 60%, #1e5bbf 100%);
    color: #fff;
    padding: 2.5rem 1.25rem;
}

.pub-fyxo-inner[b-h2nwm4csj5] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.pub-fyxo-mascot-wrap[b-h2nwm4csj5] {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pub-fyxo-mascot-wrap img[b-h2nwm4csj5] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2.34);
    transform-origin: center center;
}

.pub-badge-white[b-h2nwm4csj5] {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .3rem .85rem;
    border-radius: 999px;
}

.pub-fyxo-inner h2[b-h2nwm4csj5] {
    font-size: clamp(1.35rem, 4vw, 1.9rem);
    font-weight: 800;
    margin: 0;
}

.pub-fyxo-inner > p[b-h2nwm4csj5] {
    font-size: .97rem;
    opacity: .88;
    max-width: 500px;
    margin: 0;
}

.pub-fyxo-pillars[b-h2nwm4csj5] {
    display: grid;
    gap: .85rem;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 720px;
    text-align: left;
}

@media (min-width: 640px) {
    .pub-fyxo-pillars[b-h2nwm4csj5] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pub-fyxo-pillar[b-h2nwm4csj5] {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 1.1rem;
}

.pub-fyxo-pillar-icon[b-h2nwm4csj5] {
    font-size: 1.4rem;
    margin-bottom: .4rem;
}

.pub-fyxo-pillar h3[b-h2nwm4csj5] {
    font-size: .92rem;
    font-weight: 700;
    margin: 0 0 .2rem;
}

.pub-fyxo-pillar p[b-h2nwm4csj5] {
    font-size: .83rem;
    opacity: .82;
    line-height: 1.5;
    margin: 0;
}

/* Chat demo section */
.pub-section-alt[b-h2nwm4csj5] {
    background: #f3f6fb;
}

.pub-chat-phone[b-h2nwm4csj5] {
    max-width: 360px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.pub-chat-topbar[b-h2nwm4csj5] {
    background: #1a4fa0;
    color: #fff;
    padding: .85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.pub-chat-topbar-avatar[b-h2nwm4csj5] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.pub-chat-topbar-avatar img[b-h2nwm4csj5] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pub-chat-topbar-name[b-h2nwm4csj5] {
    font-weight: 700;
    font-size: .95rem;
}

.pub-chat-topbar-status[b-h2nwm4csj5] {
    font-size: .75rem;
    opacity: .8;
}

.pub-chat-messages[b-h2nwm4csj5] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    background: #f7f9fc;
    min-height: 260px;
}

.pub-chat-bubble[b-h2nwm4csj5] {
    padding: .7rem .95rem;
    border-radius: 16px;
    font-size: .88rem;
    max-width: 82%;
    line-height: 1.5;
}

.pub-chat-bubble.fyxo[b-h2nwm4csj5] {
    background: #fff;
    color: #111827;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
    border: 1px solid #e8edf5;
}

.pub-chat-bubble.kind[b-h2nwm4csj5] {
    background: #1a4fa0;
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.pub-fyxo-chat-label[b-h2nwm4csj5] {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    font-weight: 700;
    color: #1a4fa0;
    margin-bottom: .25rem;
}

.pub-fyxo-chat-label img[b-h2nwm4csj5] {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
/* /Components/Public/HomeFinalCta.razor.rz.scp.css */
.pub-final-cta[b-tt8spntyc4] {
    background: linear-gradient(135deg, #1e6b26 0%, #2d8b35 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pub-final-cta-mascot[b-tt8spntyc4] {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pub-final-cta-mascot img[b-tt8spntyc4] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2.6);
    transform-origin: center center;
}

.pub-final-cta h2[b-tt8spntyc4] {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    margin: 0 0 .6rem;
}

.pub-final-cta p[b-tt8spntyc4] {
    font-size: .97rem;
    opacity: .88;
    max-width: 460px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.pub-btn-white[b-tt8spntyc4] {
    background: #fff;
    color: #2d8b35;
    font-weight: 800;
    border-radius: 999px;
    padding: .9rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    min-height: 50px;
    transition: opacity .18s;
    border: none;
}

.pub-btn-white:hover[b-tt8spntyc4] {
    opacity: .93;
}

.pub-final-cta-note[b-tt8spntyc4] {
    font-size: .78rem;
    opacity: .72;
    margin: .75rem 0 0;
}
/* /Components/Public/HomeHero.razor.rz.scp.css */
.home-hero[b-7shnkvsgoz] {
    background: linear-gradient(145deg, #d6e8ff 0%, #edf4ff 45%, #f9fbff 100%);
    padding: 2.5rem 1.25rem 0;
    overflow: hidden;
}

.home-hero-inner[b-7shnkvsgoz] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-hero-copy[b-7shnkvsgoz] {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-hero-kicker[b-7shnkvsgoz] {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #1a4fa0;
    background: #deeafb;
    padding: .3rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    width: fit-content;
}

.home-hero-copy h1[b-7shnkvsgoz] {
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #111827;
    margin: 0 0 .75rem;
}

.home-hero-copy h1 em[b-7shnkvsgoz] {
    font-style: normal;
    color: #1a4fa0;
}

.home-hero-subtitle[b-7shnkvsgoz] {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

.home-hero-actions[b-7shnkvsgoz] {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: .75rem;
}

.home-hero-actions .pub-btn[b-7shnkvsgoz] {
    width: 100%;
    font-size: 1.05rem;
}

.pub-btn-hero[b-7shnkvsgoz] {
    background: #1a4fa0;
    color: #fff;
    border-color: #1a4fa0;
    box-shadow: 0 4px 14px rgba(26, 79, 160, .35);
    font-size: 1rem;
    padding: .9rem 1.75rem;
    min-height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    transition: all .18s ease;
    border: 2.5px solid transparent;
    white-space: nowrap;
    letter-spacing: .01em;
}

.pub-btn-hero:hover[b-7shnkvsgoz] {
    background: #2563c7;
    border-color: #2563c7;
    box-shadow: 0 6px 20px rgba(26, 79, 160, .45);
}

.pub-btn-hero:active[b-7shnkvsgoz] {
    transform: scale(.97);
}

.home-hero-note[b-7shnkvsgoz] {
    font-size: .8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: .3rem;
    margin: 0 0 0;
}

.home-hero-note[b-7shnkvsgoz]::before {
    content: '\1F512';
    font-size: .75rem;
}

.home-hero-trust[b-7shnkvsgoz] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.home-hero-trust li[b-7shnkvsgoz] {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .83rem;
    color: #6b7280;
    font-weight: 500;
}

.home-hero-trust li[b-7shnkvsgoz]::before {
    content: '\2713';
    color: #2d8b35;
    font-weight: 800;
    font-size: .9rem;
}

.home-hero-visual[b-7shnkvsgoz] {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1rem;
}

.home-hero-mascot-wrapper[b-7shnkvsgoz] {
    width: 200px;
}

.home-hero-mascot-wrapper img[b-7shnkvsgoz] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 -4px 20px rgba(26, 79, 160, .15));
}

@media (min-width: 768px) {
    .home-hero[b-7shnkvsgoz] {
        padding: 4rem 1.25rem 0;
    }

    .home-hero-inner[b-7shnkvsgoz] {
        flex-direction: row;
        align-items: flex-end;
        gap: 2rem;
    }

    .home-hero-copy[b-7shnkvsgoz] {
        flex: 1;
        padding-bottom: 3rem;
    }

    .home-hero-actions[b-7shnkvsgoz] {
        flex-direction: row;
    }

    .home-hero-actions .pub-btn[b-7shnkvsgoz] {
        width: auto;
    }

    .home-hero-visual[b-7shnkvsgoz] {
        flex: 0 0 300px;
        align-self: flex-end;
    }

    .home-hero-mascot-wrapper[b-7shnkvsgoz] {
        width: 300px;
    }
}
/* /Components/Public/HomeParentBenefits.razor.rz.scp.css */
.pub-shell[b-u4tn3ye5v1] {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.pub-section[b-u4tn3ye5v1] {
    padding: 2.5rem 1.25rem;
}

.pub-section-header[b-u4tn3ye5v1] {
    text-align: center;
    margin-bottom: 2rem;
}

.pub-section-header h2[b-u4tn3ye5v1] {
    font-size: clamp(1.35rem, 4vw, 1.9rem);
    font-weight: 800;
    margin: .5rem 0 0;
    line-height: 1.25;
}

.pub-section-header p[b-u4tn3ye5v1] {
    color: #6b7280;
    margin: .6rem auto 0;
    font-size: .97rem;
    max-width: 520px;
}

.pub-badge[b-u4tn3ye5v1] {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .3rem .85rem;
    border-radius: 999px;
}

.pub-badge-blue[b-u4tn3ye5v1] {
    background: #deeafb;
    color: #1a4fa0;
}

.pub-badge-green[b-u4tn3ye5v1] {
    background: #e0f2e2;
    color: #2d8b35;
}

.pub-cards[b-u4tn3ye5v1] {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .pub-cards[b-u4tn3ye5v1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pub-cards[b-u4tn3ye5v1] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pub-card[b-u4tn3ye5v1] {
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
    border: 1px solid #e8edf5;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    transition: box-shadow .2s, transform .2s;
}

.pub-card:hover[b-u4tn3ye5v1] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}

.pub-card-icon[b-u4tn3ye5v1] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pub-card-icon.blue[b-u4tn3ye5v1]   { background: #deeafb; }
.pub-card-icon.green[b-u4tn3ye5v1]  { background: #e0f2e2; }
.pub-card-icon.purple[b-u4tn3ye5v1] { background: #f0eaff; }
.pub-card-icon.orange[b-u4tn3ye5v1] { background: #fff4e6; }

.pub-card h3[b-u4tn3ye5v1] {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.pub-card p[b-u4tn3ye5v1] {
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Public/HomeSteps.razor.rz.scp.css */
.pub-steps[b-cbua1f75n9] {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
}

.pub-step[b-cbua1f75n9] {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.5rem;
}

.pub-step:last-child[b-cbua1f75n9] {
    padding-bottom: 0;
}

.pub-step-left[b-cbua1f75n9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.pub-step-num[b-cbua1f75n9] {
    width: 40px;
    height: 40px;
    background: #1a4fa0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    z-index: 1;
    flex-shrink: 0;
}

.pub-step-line[b-cbua1f75n9] {
    width: 2px;
    flex: 1;
    background: #deeafb;
    margin-top: .3rem;
    min-height: 28px;
}

.pub-step:last-child .pub-step-line[b-cbua1f75n9] {
    display: none;
}

.pub-step-body[b-cbua1f75n9] {
    padding-top: .5rem;
}

.pub-step-body h3[b-cbua1f75n9] {
    font-size: .97rem;
    font-weight: 700;
    margin: 0 0 .2rem;
}

.pub-step-body p[b-cbua1f75n9] {
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}
/* /Components/Public/HomeTestimonials.razor.rz.scp.css */
.pub-faq-list[b-1eb6q2uf9s] {
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pub-faq-list details[b-1eb6q2uf9s] {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow .2s;
}

.pub-faq-list details[open][b-1eb6q2uf9s] {
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
}

.pub-faq-list summary[b-1eb6q2uf9s] {
    padding: 1rem 1.2rem;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pub-faq-list summary[b-1eb6q2uf9s]::-webkit-details-marker {
    display: none;
}

.pub-faq-list summary[b-1eb6q2uf9s]::after {
    content: '+';
    font-size: 1.3rem;
    color: #1a4fa0;
    flex-shrink: 0;
    transition: transform .2s;
    font-weight: 300;
}

.pub-faq-list details[open] summary[b-1eb6q2uf9s]::after {
    transform: rotate(45deg);
}

.pub-faq-list details[open] summary[b-1eb6q2uf9s] {
    color: #1a4fa0;
}

.pub-faq-list details p[b-1eb6q2uf9s] {
    padding: 0 1.2rem 1rem;
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}
/* /Components/Public/PublicFooter.razor.rz.scp.css */
.pub-footer[b-cqb7vpm338] {
    background: #111827;
    color: #9ca3af;
    padding: 1.75rem 1.25rem;
    text-align: center;
    font-size: .83rem;
}

.pub-footer a[b-cqb7vpm338] {
    color: #d1d5db;
    text-decoration: none;
    transition: color .15s;
}

.pub-footer a:hover[b-cqb7vpm338] {
    color: #fff;
}

.pub-footer-links[b-cqb7vpm338] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem 1.25rem;
    margin-bottom: .75rem;
}
/* /Components/Public/PublicNavbar.razor.rz.scp.css */
.pub-navbar[b-qm50tc84tc] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    padding: .25rem 1.25rem;
}

.pub-navbar-inner[b-qm50tc84tc] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pub-navbar-brand[b-qm50tc84tc] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.pub-navbar-brand img[b-qm50tc84tc] {
    width: 160px;
    height: auto;
    object-fit: contain;
    display: block;
}

.pub-navbar-links[b-qm50tc84tc] {
    display: none;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pub-navbar-links a[b-qm50tc84tc] {
    text-decoration: none;
    color: #6b7280;
    font-size: .92rem;
    font-weight: 500;
    transition: color .15s;
}

.pub-navbar-links a:hover[b-qm50tc84tc] {
    color: #1a4fa0;
}

.pub-navbar-cta[b-qm50tc84tc] {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pub-navbar-login[b-qm50tc84tc] {
    font-size: .88rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    padding: .45rem .7rem;
    border-radius: 8px;
    transition: background .15s;
    display: none;
}

.pub-navbar-login:hover[b-qm50tc84tc] {
    background: #f3f6fb;
    color: #111827;
}

.pub-btn[b-qm50tc84tc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: all .18s ease;
    border: 2.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .01em;
}

.pub-btn-primary[b-qm50tc84tc] {
    background: #1a4fa0;
    color: #fff;
    border-color: #1a4fa0;
    box-shadow: 0 4px 14px rgba(26, 79, 160, .35);
    font-size: .85rem;
    padding: .6rem 1rem;
}

.pub-btn-primary:hover[b-qm50tc84tc] {
    background: #2563c7;
    border-color: #2563c7;
    box-shadow: 0 6px 20px rgba(26, 79, 160, .45);
}

@media (min-width: 480px) {
    .pub-navbar-login[b-qm50tc84tc] {
        display: inline-flex;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .pub-navbar-links[b-qm50tc84tc] {
        display: flex;
    }
}
/* /Components/StudifyxLogo.razor.rz.scp.css */
.studifyx-logo-link[b-hjcw9bw4d0] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.studifyx-logo-image[b-hjcw9bw4d0] {
    height: var(--studifyx-logo-height, 40px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.studifyx-logo-mobile[b-hjcw9bw4d0] {
    display: none;
}

@media (max-width: 768px) {
    .studifyx-logo-desktop[b-hjcw9bw4d0] {
        display: none;
    }

    .studifyx-logo-mobile[b-hjcw9bw4d0] {
        display: inline-block;
        max-width: min(240px, 52vw);
    }
}
/* /Layout/AppLayout.razor.rz.scp.css */
.app-content-container[b-905kxwtier] {
    padding: 1.25rem;
}

.app-appbar[b-905kxwtier] {
    border-bottom: 1px solid var(--studifyx-border);
}

.app-shell-logo[b-905kxwtier] {
    margin-right: 0.75rem;
}

.app-drawer[b-905kxwtier] {
    border-right: 1px solid var(--studifyx-border);
}

.page-title[b-905kxwtier] {
    margin-left: 1rem;
    color: var(--studifyx-text-secondary);
    font-weight: 700;
}

.app-nav-menu :deep(.mud-nav-link.active)[b-905kxwtier] {
    background-color: rgba(79, 70, 229, 0.12);
    color: var(--studifyx-primary);
}

.app-nav-menu :deep(.mud-nav-link:hover)[b-905kxwtier] {
    background-color: rgba(34, 197, 94, 0.12);
}

.app-nav-action[b-905kxwtier] {
    justify-content: flex-start;
    width: 100%;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--studifyx-text-secondary);
    text-transform: none;
}

.app-nav-action:hover[b-905kxwtier] {
    background-color: rgba(79, 70, 229, 0.08);
    color: var(--studifyx-primary);
}

.section-divider[b-905kxwtier] {
    margin-top: 0.4rem;
    margin-bottom: 0.15rem;
}

.drawer-section-title[b-905kxwtier] {
    margin-top: 0.25rem;
    color: var(--studifyx-text-muted);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.account-nav-menu[b-905kxwtier] {
    margin-top: -0.35rem;
}

.account-menu-button[b-905kxwtier] {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--studifyx-text-secondary);
    text-transform: none;
    margin-top: -0.35rem;
}

.account-menu-button:hover[b-905kxwtier] {
    background: rgba(79, 70, 229, 0.08);
    color: var(--studifyx-primary);
}

.install-popup-shell[b-905kxwtier] {
    position: sticky;
    top: 0.75rem;
    z-index: 10;
    margin: 0 auto 1rem;
    max-width: 36rem;
    animation: install-slide-in-b-905kxwtier 220ms ease-out;
}

.install-popup-card[b-905kxwtier] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98));
}

.install-popup-copy[b-905kxwtier] {
    min-width: 0;
}

.install-popup-eyebrow[b-905kxwtier] {
    margin-bottom: 0.2rem;
    color: var(--studifyx-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.install-popup-actions[b-905kxwtier] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.install-modal-backdrop[b-905kxwtier] {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
}

.install-modal[b-905kxwtier] {
    width: min(100%, 30rem);
    padding: 1.25rem;
    border-radius: 1rem;
}

.install-modal-title[b-905kxwtier] {
    margin-bottom: 0.5rem;
}

.install-modal-intro[b-905kxwtier] {
    color: var(--studifyx-text-secondary);
}

.install-modal-steps[b-905kxwtier] {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--studifyx-text-primary);
}

.install-modal-steps li + li[b-905kxwtier] {
    margin-top: 0.55rem;
}

.install-modal-actions[b-905kxwtier] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

@keyframes install-slide-in-b-905kxwtier {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .app-content-container[b-905kxwtier] {
        padding: 1rem;
    }

    .app-shell-logo[b-905kxwtier] {
        margin-right: 0.35rem;
    }

    .page-title[b-905kxwtier] {
        display: none;
    }

    .install-popup-card[b-905kxwtier] {
        align-items: flex-start;
        flex-direction: column;
    }

    .install-popup-actions[b-905kxwtier] {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
/* /Layout/AppSidebar.razor.rz.scp.css */
.app-sidebar[b-kr40qi0idz] {
    width: 280px;
    background:
        radial-gradient(circle at top right, rgba(75, 222, 227, 0.18), transparent 30%),
        linear-gradient(180deg, #16181d 0%, #101114 100%);
    color: #fefefe;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand[b-kr40qi0idz] {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-link[b-kr40qi0idz] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: inherit;
    text-decoration: none;
}

.brand-kicker[b-kr40qi0idz] {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4bdee3;
}

.brand-name[b-kr40qi0idz] {
    font-size: 1.45rem;
    font-weight: 700;
}

.sidebar-cta[b-kr40qi0idz] {
    display: flex;
}

.cta-link[b-kr40qi0idz] {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #4bdee3 100%);
    color: #081018;
    text-decoration: none;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.25);
}

.sidebar-section[b-kr40qi0idz] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

.section-label[b-kr40qi0idz] {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.sidebar-nav[b-kr40qi0idz] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.sidebar-link[b-kr40qi0idz] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: #fefefe;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sidebar-link:hover[b-kr40qi0idz] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(75, 222, 227, 0.25);
    transform: translateY(-1px);
}

.sidebar-link.active[b-kr40qi0idz] {
    background: rgba(75, 222, 227, 0.12);
    border-color: rgba(75, 222, 227, 0.4);
}

.link-title[b-kr40qi0idz] {
    font-weight: 700;
}

.link-meta[b-kr40qi0idz] {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 900px) {
    .app-sidebar[b-kr40qi0idz] {
        position: static;
        width: 100%;
        height: auto;
    }

    .sidebar-nav[b-kr40qi0idz] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
/* /Layout/AppTopbar.razor.rz.scp.css */
.app-topbar[b-z7h4f32xzw] {
    height: 56px;
    background: #131212;
    color: #fefefe;
    border-bottom: 1px solid #4bdee3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.topbar-title[b-z7h4f32xzw] {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.topbar-actions[b-z7h4f32xzw] {
    display: flex;
    align-items: center;
}
/* /Layout/BeheerNavSection.razor.rz.scp.css */
/* ── Beheer section dividers ── */
.beheer-top-divider[b-3gwazztqz9] {
    margin: 0.5rem 0 0;
}

.beheer-bottom-divider[b-3gwazztqz9] {
    margin: 0.25rem 0 0.25rem;
}

/* ── Section header: "BEHEER  [superadmin]" ── */
.beheer-label-row[b-3gwazztqz9] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 0.85rem 0.3rem;
}

.beheer-label-text[b-3gwazztqz9] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--studifyx-primary);
}

.beheer-tag[b-3gwazztqz9] {
    font-size: 0.6rem;
    background: rgba(36, 56, 200, 0.12);
    color: var(--studifyx-primary);
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
    font-weight: 700;
    letter-spacing: 0;
}

/* ── MudNavMenu overrides for beheer section ── */
.beheer-nav-menu :deep(.mud-nav-link.active)[b-3gwazztqz9] {
    background-color: rgba(36, 56, 200, 0.12);
    color: var(--studifyx-primary);
    font-weight: 600;
}

.beheer-nav-menu :deep(.mud-nav-link:hover)[b-3gwazztqz9] {
    background-color: rgba(36, 56, 200, 0.07);
}

/* ── Custom anchor for Testers (with badge) ── */
.beheer-nav-link-anchor[b-3gwazztqz9] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.85rem;
    color: var(--studifyx-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 7px;
    margin: 0.1rem 0.5rem;
    transition: background 0.12s, color 0.12s;
    position: relative;
}

.beheer-nav-link-anchor:hover[b-3gwazztqz9] {
    background: rgba(36, 56, 200, 0.07);
    color: var(--studifyx-text-primary);
}

.beheer-nav-link-anchor--active[b-3gwazztqz9] {
    background: rgba(36, 56, 200, 0.12);
    color: var(--studifyx-primary);
    font-weight: 600;
}

.beheer-nav-anchor-icon[b-3gwazztqz9] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.beheer-nav-anchor-text[b-3gwazztqz9] {
    flex: 1;
}

/* ── Red badge for Testers count ── */
.beheer-badge[b-3gwazztqz9] {
    margin-left: auto;
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    min-width: 17px;
    text-align: center;
}
/* /Layout/BeheerRecoveryBanner.razor.rz.scp.css */
/* ── Recovery banner: oranje achtergrond, boven page-content ── */
.beheer-recovery-banner[b-0gg2hkl6y5] {
    background: #fff7ed;
    border-bottom: 1px solid #fed7aa;
    padding: 0.5rem 1.4rem;
    font-size: 0.8rem;
    color: #d97706;
    font-weight: 500;
}
/* /Layout/BeheerTopbarExtension.razor.rz.scp.css */
/* ── Topbar beheer extension ── */
.beheer-topbar-ext[b-14kuqidf5j] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.beheer-breadcrumb[b-14kuqidf5j] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
}

.beheer-breadcrumb-section[b-14kuqidf5j] {
    color: var(--studifyx-text-primary);
}

/* ── 2FA active badge (green pill) ── */
.beheer-tfa-badge[b-14kuqidf5j] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: #e0f2e2;
    color: #2d8b35;
    white-space: nowrap;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-content-container[b-i9w7s0pun4] {
    padding: 1.25rem;
}

.public-appbar[b-i9w7s0pun4] {
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 255, 0.97));
    border-bottom: 1px solid var(--studifyx-border);
    backdrop-filter: blur(18px);
}

.public-brand-lockup[b-i9w7s0pun4] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.public-shell-logo[b-i9w7s0pun4] {
    flex-shrink: 0;
}

.public-brand-badge[b-i9w7s0pun4] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--studifyx-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.public-link[b-i9w7s0pun4] {
    color: var(--studifyx-text-primary);
    font-weight: 700;
}

.public-link-pill[b-i9w7s0pun4] {
    min-width: auto;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.public-link-pill:hover[b-i9w7s0pun4] {
    background: rgba(79, 70, 229, 0.08);
    color: var(--studifyx-primary);
    transform: translateY(-1px);
}

.public-drawer[b-i9w7s0pun4] {
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    border-right: 1px solid var(--studifyx-border);
}

.drawer-toggle[b-i9w7s0pun4] {
    color: var(--studifyx-primary);
    margin-right: 0.4rem;
}

.public-signin-button[b-i9w7s0pun4] {
    border-radius: 999px;
    padding-inline: 1.25rem;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.2);
}

.public-drawer-hero[b-i9w7s0pun4] {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.9rem;
    align-items: center;
    margin: 1rem 1rem 0.25rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(34, 197, 94, 0.12));
    border: 1px solid rgba(79, 70, 229, 0.12);
}

.public-drawer-hero strong[b-i9w7s0pun4] {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--studifyx-text-primary);
    font-size: 1rem;
}

.public-drawer-hero p[b-i9w7s0pun4] {
    margin: 0;
    color: var(--studifyx-text-secondary);
    font-size: 0.92rem;
    line-height: 1.45;
}

.public-drawer-mascot[b-i9w7s0pun4] {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(79, 70, 229, 0.18));
}

.public-nav-menu[b-i9w7s0pun4] {
    padding-inline: 0.75rem;
}

.public-nav-menu :deep(.mud-nav-link)[b-i9w7s0pun4] {
    margin-bottom: 0.4rem;
    border-radius: 16px;
    color: var(--studifyx-text-primary);
    font-weight: 700;
}

.public-nav-menu :deep(.mud-nav-link:hover)[b-i9w7s0pun4] {
    background: rgba(79, 70, 229, 0.08);
    color: var(--studifyx-primary);
}

.public-nav-menu :deep(.mud-nav-link.active)[b-i9w7s0pun4],
.public-nav-menu :deep(.mud-nav-link.mud-nav-link-active)[b-i9w7s0pun4] {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(34, 197, 94, 0.12));
    color: var(--studifyx-primary);
}

@media (max-width: 768px) {
    .main-content-container[b-i9w7s0pun4] {
        padding: 1rem;
    }

    .public-brand-badge[b-i9w7s0pun4] {
        display: none;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wuhr9oino4] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.bi[b-wuhr9oino4] {
    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-wuhr9oino4] {
    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-wuhr9oino4] {
    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-wuhr9oino4] {
    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-wuhr9oino4] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item[b-wuhr9oino4]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

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

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

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

    .collapse[b-wuhr9oino4] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-wuhr9oino4] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/PublicNavMenu.razor.rz.scp.css */
.studifyx-navbar[b-xawa8uemlo] {
    background: #fefefe;
    border-bottom: 1px solid #131212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.navbar-brand[b-xawa8uemlo] {
    display: flex;
    align-items: center;
}

.brand-link[b-xawa8uemlo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo[b-xawa8uemlo] {
    width: 30px;
    height: 30px;
}

.brand-name[b-xawa8uemlo] {
    color: #131212;
    font-size: 1.1rem;
    font-weight: 700;
}

.navbar-links[b-xawa8uemlo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link[b-xawa8uemlo] {
    color: #131212;
    text-decoration: none;
    border-radius: 6px;
    padding: 0.45rem 0.7rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.nav-link:hover[b-xawa8uemlo],
.nav-link:focus-visible[b-xawa8uemlo] {
    background: #4bdee3;
    outline: 2px solid var(--studifyx-primary);
    outline-offset: 1px;
}

.navbar-auth[b-xawa8uemlo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .studifyx-navbar[b-xawa8uemlo] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .navbar-links[b-xawa8uemlo] {
        flex-wrap: wrap;
    }
}
/* /Pages/AIBuddy.razor.rz.scp.css */
/* Studifyx Brand Colors */
:root[b-9d36j2bplk] {
    --electric-blue: var(--studifyx-primary);
    --charcoal-black: var(--studifyx-text-primary);
    --white: var(--studifyx-bg);
    --mint-spark: var(--studifyx-accent);
}

.ai-buddy-container[b-9d36j2bplk] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: transparent;
}

.ai-buddy-chat[b-9d36j2bplk] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: transparent;
}

.empty-state[b-9d36j2bplk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--charcoal-black);
}

.empty-icon[b-9d36j2bplk] {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.messages-container[b-9d36j2bplk] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message[b-9d36j2bplk] {
    display: flex;
    gap: 12px;
    animation: fadeIn-b-9d36j2bplk 0.3s ease-in;
}

@keyframes fadeIn-b-9d36j2bplk {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message[b-9d36j2bplk] {
    flex-direction: row-reverse;
}

.message-avatar[b-9d36j2bplk] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--white);
    border: 1px solid var(--studifyx-border);
}

.ai-avatar-image[b-9d36j2bplk] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.2rem;
}

.user-message .message-avatar[b-9d36j2bplk] {
    background: var(--electric-blue);
}

.message-content[b-9d36j2bplk] {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-message .message-content[b-9d36j2bplk] {
    align-items: flex-end;
}

.message-text[b-9d36j2bplk] {
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--studifyx-border);
    word-wrap: break-word;
    white-space: pre-wrap;
}

.user-message .message-text[b-9d36j2bplk] {
    background: var(--electric-blue);
    color: var(--white);
}

.message-time[b-9d36j2bplk] {
    font-size: 0.75rem;
    color: var(--charcoal-black);
    opacity: 0.6;
    padding: 0 8px;
}

.typing-indicator[b-9d36j2bplk] {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--studifyx-border);
}

.typing-indicator span[b-9d36j2bplk] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--electric-blue);
    animation: bounce-b-9d36j2bplk 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1)[b-9d36j2bplk] {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2)[b-9d36j2bplk] {
    animation-delay: -0.16s;
}

@keyframes bounce-b-9d36j2bplk {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.ai-buddy-input[b-9d36j2bplk] {
    padding: 20px;
    border-top: 1px solid var(--studifyx-border);
    background: var(--white);
}

.ai-buddy-alert[b-9d36j2bplk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    border: 1px solid #fecaca;
    background: #fff1f2;
    border-radius: var(--studifyx-radius);
    color: #991b1b;
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.75rem;
}

.ai-buddy-alert-close[b-9d36j2bplk] {
    border: 1px solid #fca5a5;
    background: #ffffff;
    color: #991b1b;
    border-radius: 10px;
    padding: 0.35rem 0.55rem;
    font-weight: 700;
    cursor: pointer;
}

.ai-buddy-input .input-group[b-9d36j2bplk] {
    max-width: 100%;
}

.ai-buddy-input .form-control[b-9d36j2bplk] {
    border-radius: 24px 0 0 24px;
    border: 1px solid var(--studifyx-border);
    padding: 12px 20px;
    font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.ai-buddy-input .form-control:focus[b-9d36j2bplk] {
    border-color: var(--electric-blue);
    box-shadow: none;
}

.ai-buddy-input .btn-primary[b-9d36j2bplk] {
    border-radius: 0 24px 24px 0;
    padding: 12px 24px;
    background: var(--electric-blue);
    border: none;
    font-weight: 700;
    color: var(--white);
}

.ai-buddy-input .btn-primary:hover:not(:disabled)[b-9d36j2bplk] {
    background: var(--mint-spark);
}

.ai-buddy-input .btn-primary:disabled[b-9d36j2bplk] {
    background: var(--charcoal-black);
    opacity: 0.4;
}

/* Scrollbar styling */
.ai-buddy-chat[b-9d36j2bplk]::-webkit-scrollbar {
    width: 8px;
}

.ai-buddy-chat[b-9d36j2bplk]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
}

.ai-buddy-chat[b-9d36j2bplk]::-webkit-scrollbar-thumb {
    background: var(--electric-blue);
    border-radius: 4px;
}

.ai-buddy-chat[b-9d36j2bplk]::-webkit-scrollbar-thumb:hover {
    background: var(--mint-spark);
}

/* Responsive design */
@media (max-width: 768px) {
    .message-content[b-9d36j2bplk] {
        max-width: 85%;
    }

    .empty-icon[b-9d36j2bplk] {
        font-size: 3rem;
    }
}
/* /Pages/App/ConversationDetail.razor.rz.scp.css */
/* ── F041: Desktop panels standaard zichtbaar ── */
.desktop-panels[b-374fox0qmb] {
    display: block;
}

.mobile-chat-header[b-374fox0qmb] {
    display: none;
}

/* ── Mobile: ≤768px ── */
@media (max-width: 768px) {

    /* Verberg desktop-panelen op mobile */
    .desktop-panels[b-374fox0qmb] {
        display: none;
    }

    /* Mobile chat-header */
    .mobile-chat-header[b-374fox0qmb] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
        background: var(--studifyx-bg);
        border-bottom: 1.5px solid var(--studifyx-border);
        position: sticky;
        top: 68px; /* below global mobile-header (logo ~68px tall) */
        z-index: 50;
    }
}

/* ── Back button ── */
.mobile-chat-back[b-374fox0qmb] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.15s;
}

.mobile-chat-back:hover[b-374fox0qmb] {
    background: var(--studifyx-bg-panel);
}

/* ── Titel block ── */
.mobile-chat-title-block[b-374fox0qmb] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mobile-chat-title[b-374fox0qmb] {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--studifyx-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.mobile-chat-sub[b-374fox0qmb] {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
}

/* ── Opties knop ── */
.mobile-chat-options-btn[b-374fox0qmb] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem 0.3rem 0.5rem;
    border-radius: 999px;
    border: 1.5px solid var(--studifyx-border);
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-text-secondary);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.mobile-chat-options-btn:hover[b-374fox0qmb] {
    background: var(--studifyx-bg-panel);
    border-color: var(--studifyx-primary);
    color: var(--studifyx-primary);
}

.mobile-options-label[b-374fox0qmb] {
    font-size: 0.72rem;
    font-weight: 800;
}

/* ── Bottom sheet: ConversationDetail-specifieke stijlen ──
   Basisstijlen (.mobile-sheet-backdrop, .mobile-sheet, .mobile-sheet-handle,
   .mobile-sheet-items, .mobile-sheet-item, .mobile-sheet-icon, .mobile-sheet-divider
   en @keyframes backdropIn / sheetUp) komen uit app.css (gedeeld met nav-sheet).
── */

.mobile-sheet-title[b-374fox0qmb] {
    padding: 0.85rem 1.25rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--studifyx-text-secondary);
    border-bottom: 1.5px solid var(--studifyx-border);
}

/* Map-selectie sectie */
.mobile-sheet-section[b-374fox0qmb] {
    padding: 0.75rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-sheet-item-label[b-374fox0qmb] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--studifyx-text-primary);
    font-family: inherit;
}

.mobile-sheet-select[b-374fox0qmb] {
    width: 100%;
    border: 1.5px solid var(--studifyx-border);
    border-radius: var(--studifyx-radius);
    padding: 0.55rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-text-primary);
}

.mobile-sheet-btn-primary[b-374fox0qmb] {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--studifyx-radius);
    border: none;
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
    font-family: inherit;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
}

.mobile-sheet-btn-primary:disabled[b-374fox0qmb] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Pages/App/Settings.razor.rz.scp.css */
/* ── Settings page ── */

.settings-section[b-q9ugvqci6h] {
    border: 1.5px solid var(--studifyx-border);
    border-radius: var(--studifyx-radius-card);
    background: var(--studifyx-bg-panel);
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.045);
    max-width: 640px;
}

.settings-section h2[b-q9ugvqci6h] {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--studifyx-text-primary);
}

.settings-intro[b-q9ugvqci6h] {
    margin: 0 0 1.1rem;
    font-size: 0.87rem;
    color: var(--studifyx-text-secondary);
    line-height: 1.5;
}

.settings-toggles[b-q9ugvqci6h] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.settings-toggle[b-q9ugvqci6h] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--studifyx-text-primary);
    cursor: pointer;
    line-height: 1.4;
}

.settings-toggle input[type="checkbox"][b-q9ugvqci6h] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--studifyx-primary);
    flex-shrink: 0;
}

.settings-actions[b-q9ugvqci6h] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.settings-btn-primary[b-q9ugvqci6h] {
    background: var(--studifyx-primary);
    color: var(--studifyx-bg);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.settings-btn-primary:disabled[b-q9ugvqci6h] {
    opacity: 0.65;
    cursor: not-allowed;
}

.settings-status[b-q9ugvqci6h] {
    color: var(--studifyx-text-secondary);
    font-size: 0.9rem;
}

.settings-status-msg[b-q9ugvqci6h] {
    margin: 0.7rem 0 0;
    font-size: 0.87rem;
    color: var(--studifyx-text-secondary);
}

.settings-status-error[b-q9ugvqci6h] {
    color: var(--studifyx-danger, #dc2626);
}

/* Mobile-first: no changes needed above 768px for this layout */
@media (max-width: 768px) {
    .settings-section[b-q9ugvqci6h] {
        padding: 1rem;
    }

    .settings-btn-primary[b-q9ugvqci6h] {
        width: 100%;
        text-align: center;
    }
}
/* /Pages/Beheer/BeheerBeveiliging.razor.rz.scp.css */
/* ── Shared beheer page base ── */
.beheer-page[b-vry6kz8whv] { padding: 1.4rem; max-width: 1100px; }
.beheer-page-header[b-vry6kz8whv] { margin-bottom: 1.25rem; }
.beheer-page-header h1[b-vry6kz8whv] { font-size: 1.15rem; font-weight: 800; color: var(--studifyx-text-primary); margin: 0; }
.beheer-page-header p[b-vry6kz8whv]  { font-size: 0.83rem; color: var(--studifyx-text-secondary); margin: 0.2rem 0 0; }

/* ── Card ── */
.beheer-card[b-vry6kz8whv] {
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    margin-bottom: 1rem;
}
.beheer-card-header[b-vry6kz8whv] {
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid var(--studifyx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.beheer-card-header h2[b-vry6kz8whv] { font-size: 0.87rem; font-weight: 700; margin: 0; color: var(--studifyx-text-primary); }

/* ── 2-column grid ── */
.bb-grid-2[b-vry6kz8whv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}
@media (max-width: 860px) {
    .bb-grid-2[b-vry6kz8whv] { grid-template-columns: 1fr; }
}

/* ── Card body ── */
.bb-card-body[b-vry6kz8whv] { padding: 1.1rem; }

/* ── 2FA status row ── */
.bb-tfa-status-row[b-vry6kz8whv] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}
.bb-tfa-icon[b-vry6kz8whv] { font-size: 1.75rem; }
.bb-tfa-active-label[b-vry6kz8whv] { font-weight: 700; font-size: 0.9rem; color: var(--studifyx-text-primary); }
.bb-tfa-session-label[b-vry6kz8whv] { font-size: 0.78rem; color: var(--studifyx-text-secondary); margin-top: 0.1rem; }

/* ── Divider ── */
.bb-divider[b-vry6kz8whv] { border: none; border-top: 1px solid var(--studifyx-border); margin: 0.9rem 0; }

/* ── Helper text ── */
.bb-helper-text[b-vry6kz8whv] { font-size: 0.8rem; color: var(--studifyx-text-secondary); margin: 0 0 0.7rem; }

/* ── Inline error ── */
.bb-inline-error[b-vry6kz8whv] {
    font-size: 0.82rem;
    color: #dc2626;
    padding: 0.4rem 0;
}

/* ── Action strip ── */
.beheer-action-strip[b-vry6kz8whv] { display: flex; gap: 0.35rem; flex-wrap: wrap; }

/* ── Buttons ── */
.beheer-btn[b-vry6kz8whv] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.81rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.14s;
    white-space: nowrap;
    font-family: inherit;
}
.beheer-btn:disabled[b-vry6kz8whv] { opacity: 0.6; cursor: not-allowed; }
.beheer-btn-primary[b-vry6kz8whv] { background: var(--studifyx-primary); color: #fff; border-color: var(--studifyx-primary); }
.beheer-btn-primary:hover:not(:disabled)[b-vry6kz8whv] { opacity: 0.9; }
.beheer-btn-outline[b-vry6kz8whv] { background: transparent; color: var(--studifyx-primary); border-color: var(--studifyx-primary); }
.beheer-btn-outline:hover:not(:disabled)[b-vry6kz8whv] { background: #deeafb; }
.beheer-btn-ghost[b-vry6kz8whv]   { background: var(--studifyx-bg); color: var(--studifyx-text-secondary); border-color: var(--studifyx-border); }
.beheer-btn-ghost:hover:not(:disabled)[b-vry6kz8whv]   { background: var(--studifyx-bg-soft); color: var(--studifyx-text-primary); }
.beheer-btn-danger[b-vry6kz8whv]  { background: transparent; color: #dc2626; border-color: #dc2626; }
.beheer-btn-danger:hover:not(:disabled)[b-vry6kz8whv]  { background: #fee2e2; }
.beheer-btn-sm[b-vry6kz8whv] { padding: 0.28rem 0.6rem; font-size: 0.77rem; }

/* ── Input / label ── */
.beheer-input[b-vry6kz8whv] {
    padding: 0.5rem 0.7rem;
    border: 1.5px solid var(--studifyx-border);
    border-radius: 8px;
    font-size: 0.84rem;
    background: var(--studifyx-bg);
    color: var(--studifyx-text-primary);
    outline: none;
    transition: border-color 0.14s, box-shadow 0.14s;
    font-family: inherit;
}
.beheer-input:focus[b-vry6kz8whv] { border-color: var(--studifyx-primary); box-shadow: 0 0 0 3px rgba(36,56,200,.1); }
.beheer-label[b-vry6kz8whv] { font-size: 0.76rem; font-weight: 600; color: var(--studifyx-text-primary); }

/* ── QR block ── */
.bb-qr-block[b-vry6kz8whv] { margin-top: 0.9rem; display: flex; justify-content: center; }
.bb-qr-image[b-vry6kz8whv] { max-width: 200px; border: 1px solid var(--studifyx-border); border-radius: 8px; }

/* ── Secret block ── */
.bb-secret-block[b-vry6kz8whv] {
    margin-top: 0.9rem;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.bb-secret-label[b-vry6kz8whv] { font-size: 0.72rem; font-weight: 700; color: var(--studifyx-text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.bb-secret-code[b-vry6kz8whv] { font-family: monospace; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; color: var(--studifyx-text-primary); }

/* ── Alert ── */
.bb-alert[b-vry6kz8whv] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.81rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
.bb-alert-warn[b-vry6kz8whv] { background: #fff4e6; color: #d97706; }

/* ── Badges ── */
.beheer-badge[b-vry6kz8whv] {
    display: inline-flex;
    align-items: center;
    font-size: 0.69rem;
    font-weight: 700;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    white-space: nowrap;
}
.beheer-badge--green[b-vry6kz8whv]  { background: #e0f2e2; color: #2d8b35; }
.beheer-badge--gray[b-vry6kz8whv]   { background: #f1f5f9; color: #64748b; }

/* ── Recovery codes ── */
.bb-codes-counter[b-vry6kz8whv] { font-size: 0.82rem; margin-bottom: 0.65rem; color: var(--studifyx-text-primary); }
.bb-codes-counter span[b-vry6kz8whv] { color: var(--studifyx-text-secondary); }

.bb-codes-grid[b-vry6kz8whv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    font-family: monospace;
    font-size: 0.82rem;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 0.7rem;
    margin-bottom: 0.75rem;
    color: var(--studifyx-text-primary);
}

/* ── Confirm strip ── */
.bb-confirm-strip[b-vry6kz8whv] {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--studifyx-text-primary);
}

/* ── Feedback success ── */
.bb-feedback-success[b-vry6kz8whv] {
    font-size: 0.82rem;
    color: #2d8b35;
    background: #e0f2e2;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
}

/* ── Verify form ── */
.bb-verify-row[b-vry6kz8whv] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: flex-end;
}
.bb-form-group[b-vry6kz8whv] { display: flex; flex-direction: column; gap: 0.28rem; }
.bb-code-input[b-vry6kz8whv] { width: 155px; letter-spacing: 0.1em; }

/* ── Spinner ── */
.beheer-spinner-wrap[b-vry6kz8whv] { display: flex; align-items: center; gap: 0.6rem; color: var(--studifyx-text-secondary); font-size: 0.84rem; }
.beheer-spinner[b-vry6kz8whv] {
    width: 20px; height: 20px;
    border: 2.5px solid var(--studifyx-border);
    border-top-color: var(--studifyx-primary);
    border-radius: 50%;
    animation: bb-spin-b-vry6kz8whv 0.7s linear infinite;
}
@keyframes bb-spin-b-vry6kz8whv { to { transform: rotate(360deg); } }
/* /Pages/Beheer/BeheerDashboard.razor.rz.scp.css */
/* ── Shared beheer page base — also used by other beheer pages via their own CSS files ── */

.beheer-page[b-o748x9oq9s] {
    padding: 1.4rem;
    max-width: 1100px;
}

.beheer-page-header[b-o748x9oq9s] {
    margin-bottom: 1.25rem;
}

.beheer-page-header h1[b-o748x9oq9s] {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--studifyx-text-primary);
    margin: 0;
}

.beheer-page-header p[b-o748x9oq9s] {
    font-size: 0.83rem;
    color: var(--studifyx-text-secondary);
    margin: 0.2rem 0 0;
}

/* ── Toolbar ── */
.beheer-toolbar[b-o748x9oq9s] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.beheer-toolbar-actions[b-o748x9oq9s] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.2rem;
    flex-wrap: wrap;
}

.beheer-form-group[b-o748x9oq9s] {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.beheer-label[b-o748x9oq9s] {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--studifyx-text-primary);
}

.beheer-input[b-o748x9oq9s] {
    padding: 0.5rem 0.7rem;
    border: 1.5px solid var(--studifyx-border);
    border-radius: 8px;
    font-size: 0.84rem;
    background: var(--studifyx-bg);
    color: var(--studifyx-text-primary);
    outline: none;
    transition: border-color 0.14s, box-shadow 0.14s;
}

.beheer-input:focus[b-o748x9oq9s] {
    border-color: var(--studifyx-primary);
    box-shadow: 0 0 0 3px rgba(36, 56, 200, 0.1);
}

.beheer-autorefresh-label[b-o748x9oq9s] {
    font-size: 0.79rem;
    color: var(--studifyx-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

/* ── Buttons ── */
.beheer-btn[b-o748x9oq9s] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.81rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.14s;
    white-space: nowrap;
    font-family: inherit;
}

.beheer-btn:disabled[b-o748x9oq9s] {
    opacity: 0.6;
    cursor: not-allowed;
}

.beheer-btn-primary[b-o748x9oq9s] {
    background: var(--studifyx-primary);
    color: #fff;
    border-color: var(--studifyx-primary);
}

.beheer-btn-primary:hover:not(:disabled)[b-o748x9oq9s] {
    opacity: 0.9;
}

.beheer-btn-green[b-o748x9oq9s] {
    background: #2d8b35;
    color: #fff;
    border-color: #2d8b35;
}

.beheer-btn-green:hover:not(:disabled)[b-o748x9oq9s] {
    opacity: 0.88;
}

.beheer-btn-danger[b-o748x9oq9s] {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.beheer-btn-danger:hover:not(:disabled)[b-o748x9oq9s] {
    background: #fee2e2;
}

.beheer-btn-ghost[b-o748x9oq9s] {
    background: var(--studifyx-bg);
    color: var(--studifyx-text-secondary);
    border-color: var(--studifyx-border);
}

.beheer-btn-ghost:hover:not(:disabled)[b-o748x9oq9s] {
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-text-primary);
}

.beheer-btn-sm[b-o748x9oq9s] {
    padding: 0.28rem 0.6rem;
    font-size: 0.77rem;
}

/* ── Spinner ── */
.beheer-spinner-wrap[b-o748x9oq9s] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 2rem 0;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
}

.beheer-spinner[b-o748x9oq9s] {
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--studifyx-border);
    border-top-color: var(--studifyx-primary);
    border-radius: 50%;
    animation: beheer-spin-b-o748x9oq9s 0.7s linear infinite;
}

@keyframes beheer-spin-b-o748x9oq9s {
    to { transform: rotate(360deg); }
}

/* ── KPI grid ── */
.beheer-kpi-grid[b-o748x9oq9s] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.beheer-kpi[b-o748x9oq9s] {
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.beheer-kpi-label[b-o748x9oq9s] {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.beheer-kpi-value[b-o748x9oq9s] {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--studifyx-text-primary);
}

.beheer-kpi-value--dual[b-o748x9oq9s] {
    font-size: 1.1rem;
}

.beheer-kpi-sub[b-o748x9oq9s] {
    font-size: 0.72rem;
    color: var(--studifyx-text-secondary);
}

.beheer-kpi--blue .beheer-kpi-value[b-o748x9oq9s]  { color: #1a4fa0; }
.beheer-kpi--orange .beheer-kpi-value[b-o748x9oq9s] { color: #d97706; }
.beheer-kpi--purple .beheer-kpi-value[b-o748x9oq9s] { color: #7c3aed; }

.beheer-kpi-error[b-o748x9oq9s] {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: #fee2e2;
    border-radius: 10px;
    color: #dc2626;
    font-size: 0.82rem;
}

.beheer-kpi-empty[b-o748x9oq9s] {
    grid-column: 1 / -1;
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
}

/* ── Card ── */
.beheer-card[b-o748x9oq9s] {
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    margin-bottom: 1rem;
}

.beheer-card-header[b-o748x9oq9s] {
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid var(--studifyx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.beheer-card-header h2[b-o748x9oq9s] {
    font-size: 0.87rem;
    font-weight: 700;
    margin: 0;
    color: var(--studifyx-text-primary);
}

.beheer-loading-text[b-o748x9oq9s] {
    font-size: 0.78rem;
    color: var(--studifyx-text-secondary);
}

.beheer-card-error[b-o748x9oq9s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    color: #dc2626;
    font-size: 0.82rem;
}

/* ── Table ── */
.beheer-table-wrap[b-o748x9oq9s] {
    overflow-x: auto;
}

.beheer-table[b-o748x9oq9s] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.beheer-table thead th[b-o748x9oq9s] {
    text-align: left;
    padding: 0.55rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--studifyx-border);
    white-space: nowrap;
    background: #f9fafb;
}

.beheer-table tbody tr[b-o748x9oq9s] {
    border-bottom: 1px solid var(--studifyx-border);
}

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

.beheer-table tbody tr:hover[b-o748x9oq9s] {
    background: #fafbfc;
}

.beheer-table td[b-o748x9oq9s] {
    padding: 0.6rem 0.85rem;
    vertical-align: middle;
    color: var(--studifyx-text-primary);
}

.beheer-table-row--bold td[b-o748x9oq9s] {
    font-weight: 700;
}

/* ── Empty state ── */
.beheer-empty[b-o748x9oq9s] {
    text-align: center;
    padding: 2.2rem 1rem;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
}
/* /Pages/Beheer/BeheerGebruikers.razor.rz.scp.css */
/* ── Shared beheer page base ── */
.beheer-page[b-hx8fixpdu6] { padding: 1.4rem; max-width: 1100px; }

.beheer-page-header[b-hx8fixpdu6] { margin-bottom: 1.25rem; }
.beheer-page-header h1[b-hx8fixpdu6] { font-size: 1.15rem; font-weight: 800; color: var(--studifyx-text-primary); margin: 0; }
.beheer-page-header p[b-hx8fixpdu6]  { font-size: 0.83rem; color: var(--studifyx-text-secondary); margin: 0.2rem 0 0; }

/* ── Card ── */
.beheer-card[b-hx8fixpdu6] {
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    margin-bottom: 1rem;
}

.beheer-card-header[b-hx8fixpdu6] {
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid var(--studifyx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.beheer-card-header h2[b-hx8fixpdu6] { font-size: 0.87rem; font-weight: 700; margin: 0; color: var(--studifyx-text-primary); }

.beheer-card-error[b-hx8fixpdu6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    color: #dc2626;
    font-size: 0.82rem;
}

/* ── Card body ── */
.bg-card-body[b-hx8fixpdu6] { padding: 1.1rem; }

/* ── Form row ── */
.bg-form-row[b-hx8fixpdu6] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.bg-form-group[b-hx8fixpdu6] {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    flex: 1;
    min-width: 150px;
}

.bg-form-group--wide[b-hx8fixpdu6] { min-width: 250px; flex-basis: 100%; }

.bg-confirm-label[b-hx8fixpdu6] {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: var(--studifyx-text-primary);
}

/* ── Buttons ── */
.beheer-btn[b-hx8fixpdu6] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.81rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.14s;
    white-space: nowrap;
    font-family: inherit;
}
.beheer-btn:disabled[b-hx8fixpdu6] { opacity: 0.6; cursor: not-allowed; }
.beheer-btn-primary[b-hx8fixpdu6]  { background: var(--studifyx-primary); color: #fff; border-color: var(--studifyx-primary); }
.beheer-btn-primary:hover:not(:disabled)[b-hx8fixpdu6] { opacity: 0.9; }
.beheer-btn-outline[b-hx8fixpdu6]  { background: transparent; color: var(--studifyx-primary); border-color: var(--studifyx-primary); }
.beheer-btn-outline:hover:not(:disabled)[b-hx8fixpdu6] { background: #deeafb; }
.beheer-btn-ghost[b-hx8fixpdu6]    { background: var(--studifyx-bg); color: var(--studifyx-text-secondary); border-color: var(--studifyx-border); }
.beheer-btn-ghost:hover:not(:disabled)[b-hx8fixpdu6]   { background: var(--studifyx-bg-soft); color: var(--studifyx-text-primary); }
.beheer-btn-danger[b-hx8fixpdu6]   { background: transparent; color: #dc2626; border-color: #dc2626; }
.beheer-btn-danger:hover:not(:disabled)[b-hx8fixpdu6]  { background: #fee2e2; }
.beheer-btn-sm[b-hx8fixpdu6] { padding: 0.28rem 0.6rem; font-size: 0.77rem; }

/* ── Inputs & selects ── */
.beheer-input[b-hx8fixpdu6], .beheer-select[b-hx8fixpdu6] {
    padding: 0.5rem 0.7rem;
    border: 1.5px solid var(--studifyx-border);
    border-radius: 8px;
    font-size: 0.84rem;
    background: var(--studifyx-bg);
    color: var(--studifyx-text-primary);
    outline: none;
    transition: border-color 0.14s, box-shadow 0.14s;
    font-family: inherit;
}
.beheer-input:focus[b-hx8fixpdu6], .beheer-select:focus[b-hx8fixpdu6] {
    border-color: var(--studifyx-primary);
    box-shadow: 0 0 0 3px rgba(36,56,200,.1);
}
.beheer-label[b-hx8fixpdu6] { font-size: 0.76rem; font-weight: 600; color: var(--studifyx-text-primary); }
.beheer-select--sm[b-hx8fixpdu6] { font-size: 0.77rem; padding: 0.22rem 0.4rem; width: 110px; }

/* ── Feedback ── */
.beheer-feedback[b-hx8fixpdu6] {
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--studifyx-border);
}
.beheer-feedback--success[b-hx8fixpdu6] { background: #e0f2e2; color: #2d8b35; }
.beheer-feedback--error[b-hx8fixpdu6]   { background: #fee2e2; color: #dc2626; }

/* ── Table ── */
.beheer-table-wrap[b-hx8fixpdu6] { overflow-x: auto; }
.beheer-table[b-hx8fixpdu6] { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.beheer-table thead th[b-hx8fixpdu6] {
    text-align: left;
    padding: 0.55rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--studifyx-border);
    white-space: nowrap;
    background: #f9fafb;
}
.beheer-table tbody tr[b-hx8fixpdu6] { border-bottom: 1px solid var(--studifyx-border); }
.beheer-table tbody tr:last-child[b-hx8fixpdu6] { border-bottom: none; }
.beheer-table tbody tr:hover[b-hx8fixpdu6] { background: #fafbfc; }
.beheer-table td[b-hx8fixpdu6] { padding: 0.6rem 0.85rem; vertical-align: middle; color: var(--studifyx-text-primary); }
.beheer-td-email[b-hx8fixpdu6] { font-weight: 500; font-size: 0.84rem; }
.beheer-td-muted[b-hx8fixpdu6] { color: var(--studifyx-text-secondary); font-size: 0.79rem; }

/* ── Action strip ── */
.beheer-action-strip[b-hx8fixpdu6] { display: flex; gap: 0.35rem; flex-wrap: wrap; }

/* ── Badges ── */
.beheer-badge[b-hx8fixpdu6] {
    display: inline-flex;
    align-items: center;
    font-size: 0.69rem;
    font-weight: 700;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    white-space: nowrap;
}
.beheer-badge--blue[b-hx8fixpdu6]   { background: #deeafb; color: #1a4fa0; }
.beheer-badge--green[b-hx8fixpdu6]  { background: #e0f2e2; color: #2d8b35; }
.beheer-badge--red[b-hx8fixpdu6]    { background: #fee2e2; color: #dc2626; }
.beheer-badge--orange[b-hx8fixpdu6] { background: #fff4e6; color: #d97706; }
.beheer-badge--purple[b-hx8fixpdu6] { background: #f0eaff; color: #7c3aed; }
.beheer-badge--gray[b-hx8fixpdu6]   { background: #f1f5f9; color: #64748b; }

/* ── Spinner ── */
.beheer-spinner-wrap[b-hx8fixpdu6] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
}
.beheer-spinner[b-hx8fixpdu6] {
    width: 20px; height: 20px;
    border: 2.5px solid var(--studifyx-border);
    border-top-color: var(--studifyx-primary);
    border-radius: 50%;
    animation: bg-spin-b-hx8fixpdu6 0.7s linear infinite;
}
@keyframes bg-spin-b-hx8fixpdu6 { to { transform: rotate(360deg); } }

/* ── Empty ── */
.beheer-empty[b-hx8fixpdu6] {
    text-align: center;
    padding: 2.2rem 1rem;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
}

/* ── Stats controls ── */
.bg-stats-controls[b-hx8fixpdu6] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 0.75rem;
}

/* ── Stats total row ── */
.bg-stats-total-row td[b-hx8fixpdu6] {
    border-top: 2px solid var(--studifyx-border);
    background: #f9fafb;
}

/* ── Lock overlay ── */
.beheer-lock-overlay[b-hx8fixpdu6] {
    background: #f9fafb;
    border-radius: 10px;
    padding: 2.2rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}
.beheer-lock-icon[b-hx8fixpdu6] { font-size: 2.2rem; }
.beheer-lock-overlay h3[b-hx8fixpdu6] { font-size: 0.92rem; font-weight: 700; margin: 0; }
.beheer-lock-overlay p[b-hx8fixpdu6]  { font-size: 0.8rem; color: var(--studifyx-text-secondary); max-width: 300px; margin: 0; }
.beheer-lock-input-row[b-hx8fixpdu6] { display: flex; gap: 0.45rem; margin-top: 0.2rem; }
.beheer-lock-input[b-hx8fixpdu6] { width: 130px; text-align: center; letter-spacing: 0.12em; font-size: 0.95rem; font-weight: 700; }
.beheer-lock-hint[b-hx8fixpdu6]  { font-size: 0.77rem; color: var(--studifyx-text-secondary); margin: 0; }
.beheer-lock-error[b-hx8fixpdu6] { font-size: 0.79rem; color: #dc2626; margin: 0; }
/* /Pages/Beheer/BeheerTesters.razor.rz.scp.css */
/* ── Tabs ── */
.beheer-tabs[b-a2o67lbq8p] {
    display: flex;
    border-bottom: 1px solid var(--studifyx-border);
    margin-bottom: 1.1rem;
}

.beheer-tab-btn[b-a2o67lbq8p] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--studifyx-text-secondary);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.14s, border-color 0.14s;
    font-family: inherit;
}

.beheer-tab-btn--active[b-a2o67lbq8p] {
    color: var(--studifyx-primary);
    border-bottom-color: var(--studifyx-primary);
}

.beheer-tab-btn:hover:not(.beheer-tab-btn--active)[b-a2o67lbq8p] {
    color: var(--studifyx-text-primary);
}

.beheer-tab-badge[b-a2o67lbq8p] {
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    min-width: 17px;
    text-align: center;
}

/* ── Alert banner ── */
.beheer-alert[b-a2o67lbq8p] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    font-size: 0.81rem;
    line-height: 1.5;
}

.beheer-alert-info[b-a2o67lbq8p] {
    background: #deeafb;
    color: #1a4fa0;
}

.beheer-alert-warn[b-a2o67lbq8p] {
    background: #fff4e6;
    color: #d97706;
}

/* ── Filter select ── */
.beheer-select[b-a2o67lbq8p] {
    padding: 0.38rem 0.65rem;
    border: 1.5px solid var(--studifyx-border);
    border-radius: 8px;
    font-size: 0.82rem;
    background: var(--studifyx-bg);
    color: var(--studifyx-text-primary);
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.beheer-select:focus[b-a2o67lbq8p] {
    border-color: var(--studifyx-primary);
    box-shadow: 0 0 0 3px rgba(36, 56, 200, 0.1);
}

/* ── Feedback messages ── */
.beheer-feedback[b-a2o67lbq8p] {
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--studifyx-border);
}

.beheer-feedback--success[b-a2o67lbq8p] {
    background: #e0f2e2;
    color: #2d8b35;
}

.beheer-feedback--error[b-a2o67lbq8p] {
    background: #fee2e2;
    color: #dc2626;
}

/* ── Table cell variants ── */
.beheer-td-email[b-a2o67lbq8p] {
    font-weight: 500;
    font-size: 0.84rem;
}

.beheer-td-muted[b-a2o67lbq8p] {
    color: var(--studifyx-text-secondary);
    font-size: 0.79rem;
}

/* ── Action strip ── */
.beheer-action-strip[b-a2o67lbq8p] {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

/* ── Status badges ── */
.beheer-badge[b-a2o67lbq8p] {
    display: inline-flex;
    align-items: center;
    font-size: 0.69rem;
    font-weight: 700;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    white-space: nowrap;
}

.beheer-badge--blue[b-a2o67lbq8p]   { background: #deeafb; color: #1a4fa0; }
.beheer-badge--green[b-a2o67lbq8p]  { background: #e0f2e2; color: #2d8b35; }
.beheer-badge--red[b-a2o67lbq8p]    { background: #fee2e2; color: #dc2626; }
.beheer-badge--orange[b-a2o67lbq8p] { background: #fff4e6; color: #d97706; }
.beheer-badge--gray[b-a2o67lbq8p]   { background: #f1f5f9; color: #64748b; }

/* ── Shared page elements (duplicated from dashboard for scoped CSS isolation) ── */
.beheer-page[b-a2o67lbq8p] {
    padding: 1.4rem;
    max-width: 1100px;
}

.beheer-page-header[b-a2o67lbq8p] {
    margin-bottom: 1.25rem;
}

.beheer-page-header h1[b-a2o67lbq8p] {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--studifyx-text-primary);
    margin: 0;
}

.beheer-page-header p[b-a2o67lbq8p] {
    font-size: 0.83rem;
    color: var(--studifyx-text-secondary);
    margin: 0.2rem 0 0;
}

.beheer-card[b-a2o67lbq8p] {
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    margin-bottom: 1rem;
}

.beheer-card-header[b-a2o67lbq8p] {
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid var(--studifyx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.beheer-card-header h2[b-a2o67lbq8p] {
    font-size: 0.87rem;
    font-weight: 700;
    margin: 0;
    color: var(--studifyx-text-primary);
}

.beheer-card-error[b-a2o67lbq8p] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    color: #dc2626;
    font-size: 0.82rem;
}

.beheer-spinner-wrap[b-a2o67lbq8p] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
}

.beheer-spinner[b-a2o67lbq8p] {
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--studifyx-border);
    border-top-color: var(--studifyx-primary);
    border-radius: 50%;
    animation: beheer-spin-b-a2o67lbq8p 0.7s linear infinite;
}

@keyframes beheer-spin-b-a2o67lbq8p {
    to { transform: rotate(360deg); }
}

.beheer-table-wrap[b-a2o67lbq8p] {
    overflow-x: auto;
}

.beheer-table[b-a2o67lbq8p] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.beheer-table thead th[b-a2o67lbq8p] {
    text-align: left;
    padding: 0.55rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--studifyx-border);
    white-space: nowrap;
    background: #f9fafb;
}

.beheer-table tbody tr[b-a2o67lbq8p] {
    border-bottom: 1px solid var(--studifyx-border);
}

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

.beheer-table tbody tr:hover[b-a2o67lbq8p] {
    background: #fafbfc;
}

.beheer-table td[b-a2o67lbq8p] {
    padding: 0.6rem 0.85rem;
    vertical-align: middle;
    color: var(--studifyx-text-primary);
}

.beheer-empty[b-a2o67lbq8p] {
    text-align: center;
    padding: 2.2rem 1rem;
    color: var(--studifyx-text-secondary);
    font-size: 0.84rem;
}

.beheer-btn[b-a2o67lbq8p] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.81rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.14s;
    white-space: nowrap;
    font-family: inherit;
}

.beheer-btn:disabled[b-a2o67lbq8p] {
    opacity: 0.6;
    cursor: not-allowed;
}

.beheer-btn-green[b-a2o67lbq8p] {
    background: #2d8b35;
    color: #fff;
    border-color: #2d8b35;
}

.beheer-btn-green:hover:not(:disabled)[b-a2o67lbq8p] {
    opacity: 0.88;
}

.beheer-btn-danger[b-a2o67lbq8p] {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.beheer-btn-danger:hover:not(:disabled)[b-a2o67lbq8p] {
    background: #fee2e2;
}

.beheer-btn-ghost[b-a2o67lbq8p] {
    background: var(--studifyx-bg);
    color: var(--studifyx-text-secondary);
    border-color: var(--studifyx-border);
}

.beheer-btn-ghost:hover:not(:disabled)[b-a2o67lbq8p] {
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-text-primary);
}

.beheer-btn-sm[b-a2o67lbq8p] {
    padding: 0.28rem 0.6rem;
    font-size: 0.77rem;
}

.beheer-btn-primary[b-a2o67lbq8p] {
    background: var(--studifyx-primary);
    color: #fff;
    border-color: var(--studifyx-primary);
}

.beheer-btn-primary:hover:not(:disabled)[b-a2o67lbq8p] {
    opacity: 0.88;
}

.beheer-btn-outline[b-a2o67lbq8p] {
    background: transparent;
    color: var(--studifyx-primary);
    border-color: var(--studifyx-primary);
}

.beheer-btn-outline:hover:not(:disabled)[b-a2o67lbq8p] {
    background: #deeafb;
}

/* ── Card body ── */
.beheer-card-body[b-a2o67lbq8p] {
    padding: 1.1rem;
}

/* ── Form elements ── */
.beheer-form-row[b-a2o67lbq8p] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.beheer-form-group[b-a2o67lbq8p] {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    flex: 1;
    min-width: 150px;
}

.beheer-form-group--fixed[b-a2o67lbq8p] {
    flex: 0 0 170px;
}

.beheer-form-label[b-a2o67lbq8p] {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--studifyx-text-primary);
}

.beheer-input[b-a2o67lbq8p] {
    padding: 0.5rem 0.7rem;
    border: 1.5px solid var(--studifyx-border);
    border-radius: 8px;
    font-size: 0.84rem;
    font-family: inherit;
    background: var(--studifyx-bg-soft);
    color: var(--studifyx-text-primary);
    outline: none;
    transition: border-color 0.14s, box-shadow 0.14s;
}

.beheer-input:focus[b-a2o67lbq8p] {
    border-color: var(--studifyx-primary);
    box-shadow: 0 0 0 3px rgba(36, 56, 200, 0.1);
    background: var(--studifyx-bg);
}

.beheer-input:disabled[b-a2o67lbq8p] {
    opacity: 0.6;
    cursor: not-allowed;
}

.beheer-form-action[b-a2o67lbq8p] {
    padding-bottom: 0.05rem;
}
/* /Pages/Beheer/BeheerVerbruik.razor.rz.scp.css */
/* ── Shared beheer page base ── */
.beheer-page[b-xojc22wb41] { padding: 1.4rem; max-width: 1100px; }
.beheer-page-header[b-xojc22wb41] { margin-bottom: 1.25rem; }
.beheer-page-header h1[b-xojc22wb41] { font-size: 1.15rem; font-weight: 800; color: var(--studifyx-text-primary); margin: 0; }
.beheer-page-header p[b-xojc22wb41]  { font-size: 0.83rem; color: var(--studifyx-text-secondary); margin: 0.2rem 0 0; }

.beheer-card[b-xojc22wb41] {
    background: var(--studifyx-bg);
    border-radius: 10px;
    border: 1px solid var(--studifyx-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    margin-bottom: 1rem;
}
.beheer-card-header[b-xojc22wb41] {
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid var(--studifyx-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.beheer-card-header h2[b-xojc22wb41] { font-size: 0.87rem; font-weight: 700; margin: 0; color: var(--studifyx-text-primary); }
.beheer-card-error[b-xojc22wb41] { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.1rem; color: #dc2626; font-size: 0.82rem; }

/* ── Card body ── */
.bv-card-body[b-xojc22wb41] { padding: 1.1rem; }

/* ── 2-column grid ── */
.bv-grid-2[b-xojc22wb41] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 900px) {
    .bv-grid-2[b-xojc22wb41] { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.beheer-btn[b-xojc22wb41] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.81rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.14s;
    white-space: nowrap;
    font-family: inherit;
}
.beheer-btn:disabled[b-xojc22wb41] { opacity: 0.6; cursor: not-allowed; }
.beheer-btn-ghost[b-xojc22wb41]  { background: var(--studifyx-bg); color: var(--studifyx-text-secondary); border-color: var(--studifyx-border); }
.beheer-btn-ghost:hover:not(:disabled)[b-xojc22wb41] { background: var(--studifyx-bg-soft); color: var(--studifyx-text-primary); }
.beheer-btn-sm[b-xojc22wb41] { padding: 0.28rem 0.6rem; font-size: 0.77rem; }

/* ── Inputs ── */
.beheer-input[b-xojc22wb41] {
    padding: 0.5rem 0.7rem;
    border: 1.5px solid var(--studifyx-border);
    border-radius: 8px;
    font-size: 0.84rem;
    background: var(--studifyx-bg);
    color: var(--studifyx-text-primary);
    outline: none;
    transition: border-color 0.14s, box-shadow 0.14s;
    font-family: inherit;
}
.beheer-input:focus[b-xojc22wb41] { border-color: var(--studifyx-primary); box-shadow: 0 0 0 3px rgba(36,56,200,.1); }

/* ── Table ── */
.beheer-table-wrap[b-xojc22wb41] { overflow-x: auto; }
.beheer-table[b-xojc22wb41] { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.beheer-table thead th[b-xojc22wb41] {
    text-align: left;
    padding: 0.55rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--studifyx-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--studifyx-border);
    white-space: nowrap;
    background: #f9fafb;
}
.beheer-table tbody tr[b-xojc22wb41] { border-bottom: 1px solid var(--studifyx-border); }
.beheer-table tbody tr:last-child[b-xojc22wb41] { border-bottom: none; }
.beheer-table tbody tr:hover[b-xojc22wb41] { background: #fafbfc; }
.beheer-table td[b-xojc22wb41] { padding: 0.6rem 0.85rem; vertical-align: middle; color: var(--studifyx-text-primary); }
.beheer-td-email[b-xojc22wb41] { font-weight: 500; font-size: 0.84rem; }

/* ── Spinner ── */
.beheer-spinner-wrap[b-xojc22wb41] { display: flex; align-items: center; gap: 0.6rem; color: var(--studifyx-text-secondary); font-size: 0.84rem; }
.beheer-spinner[b-xojc22wb41] {
    width: 20px; height: 20px;
    border: 2.5px solid var(--studifyx-border);
    border-top-color: var(--studifyx-primary);
    border-radius: 50%;
    animation: bv-spin-b-xojc22wb41 0.7s linear infinite;
}
@keyframes bv-spin-b-xojc22wb41 { to { transform: rotate(360deg); } }

/* ── Empty ── */
.beheer-empty[b-xojc22wb41] { text-align: center; padding: 2.2rem 1rem; color: var(--studifyx-text-secondary); font-size: 0.84rem; }

/* ── Lock overlay ── */
.beheer-lock-overlay[b-xojc22wb41] {
    background: #f9fafb;
    border-radius: 10px;
    padding: 2.2rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}
.beheer-lock-icon[b-xojc22wb41] { font-size: 2.2rem; }
.beheer-lock-overlay h3[b-xojc22wb41] { font-size: 0.92rem; font-weight: 700; margin: 0; }
.beheer-lock-overlay p[b-xojc22wb41]  { font-size: 0.8rem; color: var(--studifyx-text-secondary); max-width: 300px; margin: 0; }
.beheer-lock-input-row[b-xojc22wb41] { display: flex; gap: 0.45rem; margin-top: 0.2rem; }
.beheer-lock-input[b-xojc22wb41] { width: 130px; text-align: center; letter-spacing: 0.12em; font-size: 0.95rem; font-weight: 700; }
.beheer-lock-hint[b-xojc22wb41]  { font-size: 0.77rem; color: var(--studifyx-text-secondary); margin: 0; }
.beheer-lock-error[b-xojc22wb41] { font-size: 0.79rem; color: #dc2626; margin: 0; }
