
.ot-assistants-dashboard,
.ot-assistants-dashboard * {
    box-sizing: border-box;
}

.ot-assistants-dashboard {
    --ot-lime: #A8B957;
    --ot-text: #2f3330;
    --ot-muted: #6e746f;
    --ot-border: #e3e6dc;
    --ot-bg: #f7f7f2;
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ot-text);
}

.ot-assistants-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.ot-assistants-header {
    margin: 0;
}

.ot-assistants-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #7d8e35;
}

.ot-assistants-header h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.ot-assistants-header > p:last-child {
    margin: 0;
    color: var(--ot-muted);
    font-size: 17px;
}


.ot-dashboard-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.ot-dashboard-button {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .15s ease, background .15s ease, border-color .15s ease;
}

.ot-dashboard-button.is-home {
    background: #fff;
    color: var(--ot-text);
    border: 1px solid var(--ot-border);
}

.ot-dashboard-button.is-home:hover,
.ot-dashboard-button.is-home:focus {
    background: #f2f3ed;
    border-color: #d2d7c8;
}

.ot-dashboard-button.is-logout {
    background: var(--ot-lime);
    color: #1f241d;
    border: 1px solid var(--ot-lime);
}

.ot-dashboard-button.is-logout:hover,
.ot-dashboard-button.is-logout:focus {
    filter: brightness(1.04);
}

.ot-assistants-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ot-assistant-card {
    min-height: 245px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--ot-border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(32, 38, 32, .05);
    display: flex;
    flex-direction: column;
}

.ot-assistant-card.is-owned {
    border-color: #cdd6a6;
}

.ot-assistant-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.ot-assistant-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #eef2dd;
    color: #66742d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.ot-status {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    border-radius: 999px;
    padding: 8px 10px;
    white-space: nowrap;
}

.ot-status.is-available {
    background: #eef3dc;
    color: #596529;
}

.ot-status.is-soon {
    background: #f2f2ee;
    color: #777a73;
}

.ot-status.is-locked {
    background: #f5f5f2;
    color: #8a8e87;
}

.ot-assistant-card h2 {
    margin: 0 0 9px;
    font-size: 21px;
}

.ot-assistant-card p {
    margin: 0 0 24px;
    line-height: 1.55;
    color: var(--ot-muted);
}

.ot-assistant-action {
    margin-top: auto;
}

.ot-open-button,
.ot-disabled-button,
.ot-access-button {
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
}

.ot-open-button,
.ot-access-button {
    background: var(--ot-lime);
    color: #1f241d;
}

.ot-open-button:hover,
.ot-access-button:hover {
    filter: brightness(1.04);
}

.ot-disabled-button {
    background: #f1f2ee;
    color: #8a8e87;
}

.ot-access-message {
    max-width: 680px;
    margin: 60px auto;
    padding: 28px;
    border: 1px solid var(--ot-border);
    background: #fff;
    border-radius: 14px;
}

.ot-access-link {
    color: #65722d;
    font-weight: 700;
}

@media (max-width: 760px) {
    .ot-assistants-dashboard {
        padding: 30px 16px 42px;
    }

    .ot-assistants-toprow {
        flex-direction: column;
        gap: 20px;
    }

    .ot-dashboard-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .ot-assistants-grid {
        grid-template-columns: 1fr;
    }
}


body.officetext-mijn-assistenten-page {
    margin: 0;
    background: #f7f7f2;
}

.officetext-workpage-main {
    min-height: 100vh;
}
