/* /Layout/MainLayout.razor.rz.scp.css */
/* ── Page shell ───────────────────────────────────────────────────── */
.page[b-z1xalei8xx] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-z1xalei8xx] {
    flex: 1;
    background: radial-gradient(circle at top right, rgba(18, 90, 120, 0.12) 0, rgba(247, 249, 252, 0.2) 35%), #f7f9fc;
}

/* ── Sidebar ──────────────────────────────────────────────────────── */
.sidebar[b-z1xalei8xx] {
    background: linear-gradient(165deg, #0e2f3a 0%, #143f4e 45%, #196176 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Top bar ──────────────────────────────────────────────────────── */
.top-row[b-z1xalei8xx] {
    background: #ffffff;
    border-bottom: 1px solid #d7e2e8;
    box-shadow: 0 1px 6px rgba(20, 53, 65, 0.07);
    height: 3.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.top-row-left[b-z1xalei8xx] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.top-row-spacer[b-z1xalei8xx] {
    flex: 1;
}

/* ── Top icon buttons ─────────────────────────────────────────────── */
.top-icon-btn[b-z1xalei8xx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid #d0e1e8;
    border-radius: 8px;
    background: transparent;
    color: #205161;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    padding: 0;
    flex-shrink: 0;
}

.top-icon-btn:hover[b-z1xalei8xx] {
    background-color: #eaf4f8;
    border-color: #b0ccd6;
    color: #104b5d;
}

.top-icon-btn:focus-visible[b-z1xalei8xx] {
    outline: 2px solid #28a1c7;
    outline-offset: 2px;
}

.top-icon-btn--active[b-z1xalei8xx] {
    background-color: #eaf4f8;
    border-color: #196176;
    color: #196176;
}

.top-icon-btn--logout:hover[b-z1xalei8xx] {
    background-color: #fff1f1;
    border-color: #e57373;
    color: #b43434;
}

/* ── User area ────────────────────────────────────────────────────── */
.top-user-area[b-z1xalei8xx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.top-user-avatar[b-z1xalei8xx] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #196176 0%, #28a1c7 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.top-user-name[b-z1xalei8xx] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #205161;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-link[b-z1xalei8xx] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #196176;
    text-decoration: none;
    padding: 0.3rem 0.75rem;
    border: 1px solid #196176;
    border-radius: 8px;
    transition: background-color 0.15s ease;
}

.top-link:hover[b-z1xalei8xx] {
    background-color: #eaf4f8;
    color: #104b5d;
}

/* ── Responsive — mobile ──────────────────────────────────────────── */
@media (max-width: 640.98px) {
    .page.sidebar-closed .sidebar[b-z1xalei8xx] {
        display: none;
    }

    .page.sidebar-open .sidebar[b-z1xalei8xx] {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        z-index: 200;
    }

    .top-user-name[b-z1xalei8xx] {
        display: none;
    }
}

/* ── Responsive — desktop ─────────────────────────────────────────── */
@media (min-width: 641px) {
    .page[b-z1xalei8xx] {
        flex-direction: row;
    }

    .sidebar[b-z1xalei8xx] {
        width: 0;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
        transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .page.sidebar-open .sidebar[b-z1xalei8xx],
    .page.sidebar-pinned .sidebar[b-z1xalei8xx] {
        width: 260px;
    }

    .top-row[b-z1xalei8xx] {
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 1.5rem;
    }

    article[b-z1xalei8xx] {
        padding-left: 1.75rem !important;
        padding-right: 1.75rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ── Sidebar header ───────────────────────────────────────────────── */
.nav-header[b-4rd2tc6368] {
    height: 3.75rem;
    background-color: rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    flex-shrink: 0;
}

.nav-logo-icon[b-4rd2tc6368] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
    color: #ecf8fb;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.14);
}

.nav-logo-text[b-4rd2tc6368] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    overflow: hidden;
}

.nav-brand-name[b-4rd2tc6368] {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ecf8fb;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-brand-sub[b-4rd2tc6368] {
    font-size: 0.68rem;
    color: rgba(214, 233, 238, 0.65);
    white-space: nowrap;
}

/* ── Section labels ───────────────────────────────────────────────── */
.nav-section-label[b-4rd2tc6368] {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(214, 233, 238, 0.45);
    padding: 1rem 1.35rem 0.3rem;
    text-transform: uppercase;
}

.nav-divider[b-4rd2tc6368] {
    margin: 0.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* ── Nav items ────────────────────────────────────────────────────── */
.nav-item[b-4rd2tc6368] {
    font-size: 0.88rem;
    padding-bottom: 0.15rem;
}

.nav-item:first-of-type[b-4rd2tc6368] {
    padding-top: 0.75rem;
}

.nav-item:last-of-type[b-4rd2tc6368] {
    padding-bottom: 0.75rem;
}

.nav-item[b-4rd2tc6368]  a,
.logout-link[b-4rd2tc6368] {
    color: rgba(214, 233, 238, 0.82);
    border-radius: 10px;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.logout-link[b-4rd2tc6368] {
    width: 100%;
    justify-content: flex-start;
}

.nav-item[b-4rd2tc6368]  a.active {
    background-color: rgba(99, 186, 214, 0.22);
    color: #ffffff;
    font-weight: 600;
}

.nav-item[b-4rd2tc6368]  a:hover,
.logout-link:hover[b-4rd2tc6368] {
    background-color: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

/* ── Nav icons ────────────────────────────────────────────────────── */
.nav-icon[b-4rd2tc6368] {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    opacity: 0.80;
}

.nav-item[b-4rd2tc6368]  a.active .nav-icon,
.nav-item[b-4rd2tc6368]  a:hover .nav-icon,
.logout-link:hover .nav-icon[b-4rd2tc6368] {
    opacity: 1;
}

/* ── Scrollable area ──────────────────────────────────────────────── */
@media (min-width: 641px) {
    .nav-scrollable[b-4rd2tc6368] {
        height: calc(100vh - 3.75rem);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-scrollable[b-4rd2tc6368]::-webkit-scrollbar {
        width: 4px;
    }

    .nav-scrollable[b-4rd2tc6368]::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-scrollable[b-4rd2tc6368]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 99px;
    }
}
/* /Pages/Admin.razor.rz.scp.css */
/* ── Create service modal ────────────────────────────────────── */
.adm-modal-backdrop[b-9o1xw79je9] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
}

.adm-modal-container[b-9o1xw79je9] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.adm-modal-card[b-9o1xw79je9] {
    width: min(760px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d7dce3;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.28);
    scrollbar-width: thin;
    scrollbar-color: #c0cdd8 transparent;
}

.adm-modal-header[b-9o1xw79je9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid #e4e9f1;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1;
}

.adm-modal-body[b-9o1xw79je9] {
    padding: 1.25rem 1.5rem 1.5rem;
}

.adm-section-label[b-9o1xw79je9] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #196176;
    margin: 0 0 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.adm-section-optional[b-9o1xw79je9] {
    font-size: 0.62rem;
    font-weight: 500;
    color: #8fa8b8;
    text-transform: none;
    letter-spacing: 0;
    background: rgba(25,97,118,0.07);
    border-radius: 4px;
    padding: 0.05rem 0.35rem;
}

/* ── Service catalog tab ─────────────────────────────────────── */
.svc-prompt-preview[b-9o1xw79je9] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    background: rgba(25, 97, 118, 0.06);
    border: 1px solid rgba(25, 97, 118, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.35rem;
}

.svc-prompt-label[b-9o1xw79je9] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #196176;
    white-space: nowrap;
    flex-shrink: 0;
}

.svc-prompt-text[b-9o1xw79je9] {
    font-size: 0.78rem;
    color: #2a4a5a;
    line-height: 1.45;
    word-break: break-word;
}

.svc-prompt-empty[b-9o1xw79je9] {
    font-size: 0.78rem;
    color: #a0b4be;
    font-style: italic;
    margin-top: 0.25rem;
}

.svc-prompt-textarea[b-9o1xw79je9] {
    font-family: "Consolas", "Fira Code", monospace;
    font-size: 0.82rem;
    line-height: 1.55;
    resize: vertical;
    min-height: 160px;
}
/* /Pages/Credentials.razor.rz.scp.css */
/* ── Modal ────────────────────────────────────────────────────────── */
.oa-modal-backdrop[b-l9qt59zii0] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
}

.oa-modal-container[b-l9qt59zii0] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.oa-modal-card[b-l9qt59zii0] {
    width: min(1080px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d7dce3;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.28);
}

.oa-modal-header[b-l9qt59zii0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid #e4e9f1;
    position: sticky;
    top: 0;
    background: #ffffff;
}

.oa-modal-body[b-l9qt59zii0] {
    padding: 1.25rem;
}

/* ── Rotate warning styles ────────────────────────────────────────── */
.rotate-warn-box[b-l9qt59zii0] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff8e6;
    border: 1px solid #f5c842;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #7a5800;
    font-size: 0.875rem;
}

.rotate-impact-list[b-l9qt59zii0] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rotate-impact-list li[b-l9qt59zii0] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: #2c3e50;
    line-height: 1.5;
}

.rotate-impact-list li svg[b-l9qt59zii0] {
    color: #196176;
    flex-shrink: 0;
    margin-top: 2px;
}
/* /Pages/Documentation.razor.rz.scp.css */
/* ── Page header ─────────────────────────────────────────────── */
.doc-page-header[b-bhtj1dx1mj] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.doc-page-header-icon[b-bhtj1dx1mj] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(25,97,118,0.14) 0%, rgba(40,161,199,0.10) 100%);
    color: #196176;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(25,97,118,0.12);
}

.doc-page-title[b-bhtj1dx1mj] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f2f3a;
    margin: 0;
    letter-spacing: -0.3px;
}

.doc-page-sub[b-bhtj1dx1mj] {
    font-size: 0.82rem;
    color: #5a7a88;
    margin: 0.1rem 0 0;
}

/* ── Error alert ─────────────────────────────────────────────── */
.doc-alert-error[b-bhtj1dx1mj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff1f1;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: #b91c1c;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ── Layout grid ─────────────────────────────────────────────── */
.doc-layout[b-bhtj1dx1mj] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.doc-sidebar[b-bhtj1dx1mj] {
    border: 1px solid #dde3ec;
    border-radius: 14px;
    background: #f8fafc;
    max-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.doc-sidebar-header[b-bhtj1dx1mj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem 0.75rem;
    border-bottom: 1px solid #e4e9f0;
    flex-shrink: 0;
}

.doc-sidebar-title[b-bhtj1dx1mj] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2e4a5a;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.doc-file-count[b-bhtj1dx1mj] {
    background: #196176;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    line-height: 1.5;
}

.doc-refresh-btn[b-bhtj1dx1mj] {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #d4dce6;
    background: #fff;
    color: #4a6a78;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.doc-refresh-btn:hover:not(:disabled)[b-bhtj1dx1mj] {
    background: #e8f2f6;
    color: #196176;
    border-color: #b0ccd8;
}

.doc-refresh-btn:disabled[b-bhtj1dx1mj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.doc-spin[b-bhtj1dx1mj] {
    animation: doc-spin-b-bhtj1dx1mj 0.8s linear infinite;
}

@keyframes doc-spin-b-bhtj1dx1mj {
    to { transform: rotate(360deg); }
}

.doc-sidebar-list[b-bhtj1dx1mj] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #c0cdd8 transparent;
}

/* ── File items ──────────────────────────────────────────────── */
.doc-file-item[b-bhtj1dx1mj] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    width: 100%;
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
    margin-bottom: 2px;
    position: relative;
}

.doc-file-item:hover[b-bhtj1dx1mj] {
    background: rgba(25, 97, 118, 0.07);
    border-color: rgba(25, 97, 118, 0.12);
}

.doc-file-item--active[b-bhtj1dx1mj] {
    background: rgba(25, 97, 118, 0.11);
    border-color: rgba(25, 97, 118, 0.22);
}

.doc-file-icon[b-bhtj1dx1mj] {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(25, 97, 118, 0.10);
    color: #196176;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.doc-file-item--active .doc-file-icon[b-bhtj1dx1mj] {
    background: #196176;
    color: #fff;
}

.doc-file-meta[b-bhtj1dx1mj] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.doc-file-title[b-bhtj1dx1mj] {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1a3040;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.doc-file-item--active .doc-file-title[b-bhtj1dx1mj] {
    color: #196176;
}

.doc-file-name[b-bhtj1dx1mj] {
    font-size: 0.72rem;
    color: #7a90a0;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.doc-file-active-dot[b-bhtj1dx1mj] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #196176;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ── Empty state ─────────────────────────────────────────────── */
.doc-empty-state[b-bhtj1dx1mj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #8fa8b8;
    min-height: 280px;
    text-align: center;
    padding: 2rem;
}

.doc-empty-state p[b-bhtj1dx1mj] {
    font-size: 0.875rem;
    margin: 0;
    color: #7a90a0;
}

.doc-empty-state--small[b-bhtj1dx1mj] {
    min-height: 120px;
    gap: 0.5rem;
}

.doc-empty-state--small span[b-bhtj1dx1mj] {
    font-size: 0.78rem;
    color: #8fa8b8;
}

/* ── Skeleton loaders ────────────────────────────────────────── */
.doc-sk[b-bhtj1dx1mj] {
    background: linear-gradient(90deg, #e8edf2 25%, #f3f6f9 50%, #e8edf2 75%);
    background-size: 200% 100%;
    animation: doc-shimmer-b-bhtj1dx1mj 1.4s ease-in-out infinite;
    border-radius: 5px;
    display: block;
}

@keyframes doc-shimmer-b-bhtj1dx1mj {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.doc-sk--title[b-bhtj1dx1mj] { height: 13px; width: 100%; margin-bottom: 6px; }
.doc-sk--sub[b-bhtj1dx1mj]   { height: 10px; width: 65%; }
.doc-sk--h[b-bhtj1dx1mj]     { height: 22px; margin-bottom: 8px; }
.doc-sk--h2[b-bhtj1dx1mj]    { height: 17px; margin-bottom: 10px; }
.doc-sk--meta[b-bhtj1dx1mj]  { height: 10px; }
.doc-sk--p[b-bhtj1dx1mj]     { height: 12px; width: 100%; margin-bottom: 8px; }

.doc-skeleton-list[b-bhtj1dx1mj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0.25rem;
}

.doc-skeleton-item[b-bhtj1dx1mj] {
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    background: rgba(0,0,0,0.02);
}

.doc-content-skeleton[b-bhtj1dx1mj] {
    padding: 0.5rem 0.25rem;
}

/* ── Content panel ───────────────────────────────────────────── */
.doc-content[b-bhtj1dx1mj] {
    border: 1px solid #dde3ec;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    background: #fff;
    min-height: 480px;
}

/* ── Content header ──────────────────────────────────────────── */
.doc-content-header[b-bhtj1dx1mj] {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0;
}

.doc-content-header-icon[b-bhtj1dx1mj] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(25, 97, 118, 0.10);
    color: #196176;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-content-header-info[b-bhtj1dx1mj] {
    flex: 1;
    min-width: 0;
}

.doc-content-title[b-bhtj1dx1mj] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f2f3a;
    margin: 0 0 0.35rem;
    letter-spacing: -0.2px;
}

.doc-content-meta[b-bhtj1dx1mj] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.doc-content-filename[b-bhtj1dx1mj] {
    font-size: 0.72rem;
    background: rgba(25,97,118,0.08);
    color: #196176;
    padding: 0.15rem 0.45rem;
    border-radius: 5px;
    font-family: monospace;
}

.doc-content-sep[b-bhtj1dx1mj] {
    color: #b0c0cc;
    font-size: 0.75rem;
}

.doc-content-date[b-bhtj1dx1mj] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #6a8898;
}

.doc-divider[b-bhtj1dx1mj] {
    border: none;
    border-top: 1px solid #e8edf4;
    margin: 1rem 0 1.5rem;
}

/* ── Markdown body ───────────────────────────────────────────── */
.markdown-body[b-bhtj1dx1mj] {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #1e3545;
}

.markdown-body :deep(h1)[b-bhtj1dx1mj] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f2f3a;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e8edf4;
    letter-spacing: -0.3px;
}

.markdown-body :deep(h2)[b-bhtj1dx1mj] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a4a;
    margin: 1.4rem 0 0.6rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #edf2f6;
}

.markdown-body :deep(h3)[b-bhtj1dx1mj] {
    font-size: 1rem;
    font-weight: 700;
    color: #1a3a4a;
    margin: 1.2rem 0 0.5rem;
}

.markdown-body :deep(h4)[b-bhtj1dx1mj],
.markdown-body :deep(h5)[b-bhtj1dx1mj],
.markdown-body :deep(h6)[b-bhtj1dx1mj] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2a4a5a;
    margin: 1rem 0 0.4rem;
}

.markdown-body :deep(p)[b-bhtj1dx1mj] {
    margin: 0 0 0.9rem;
}

.markdown-body :deep(ul)[b-bhtj1dx1mj],
.markdown-body :deep(ol)[b-bhtj1dx1mj] {
    padding-left: 1.4rem;
    margin: 0 0 0.9rem;
}

.markdown-body :deep(li)[b-bhtj1dx1mj] {
    margin-bottom: 0.3rem;
}

.markdown-body :deep(strong)[b-bhtj1dx1mj] {
    font-weight: 700;
    color: #0f2f3a;
}

.markdown-body :deep(em)[b-bhtj1dx1mj] {
    color: #3a5565;
}

.markdown-body :deep(pre)[b-bhtj1dx1mj] {
    background: #0f1c26;
    color: #cdd8e0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    overflow-x: auto;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    border: 1px solid #1c3040;
}

.markdown-body :deep(pre code)[b-bhtj1dx1mj] {
    background: none;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
}

.markdown-body :deep(code)[b-bhtj1dx1mj] {
    background: rgba(25,97,118,0.09);
    color: #196176;
    border-radius: 4px;
    padding: 0.12rem 0.38rem;
    font-size: 0.84em;
    font-family: monospace;
}

.markdown-body :deep(blockquote)[b-bhtj1dx1mj] {
    border-left: 3px solid #196176;
    background: rgba(25,97,118,0.05);
    padding: 0.6rem 1rem;
    border-radius: 0 8px 8px 0;
    margin: 0 0 0.9rem;
    color: #3a5a6a;
}

.markdown-body :deep(table)[b-bhtj1dx1mj] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin: 0 0 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e8ef;
}

.markdown-body :deep(th)[b-bhtj1dx1mj] {
    background: rgba(25,97,118,0.07);
    color: #1a3a4a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid #d0dce8;
}

.markdown-body :deep(td)[b-bhtj1dx1mj] {
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid #edf2f7;
    color: #1e3545;
}

.markdown-body :deep(tr:last-child td)[b-bhtj1dx1mj] {
    border-bottom: none;
}

.markdown-body :deep(tr:hover td)[b-bhtj1dx1mj] {
    background: rgba(25,97,118,0.03);
}

.markdown-body :deep(hr)[b-bhtj1dx1mj] {
    border: none;
    border-top: 1px solid #e8edf4;
    margin: 1.5rem 0;
}

.markdown-body :deep(a)[b-bhtj1dx1mj] {
    color: #196176;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.markdown-body :deep(a:hover)[b-bhtj1dx1mj] {
    color: #28a1c7;
}

.markdown-body :deep(img)[b-bhtj1dx1mj] {
    max-width: 100%;
    border-radius: 8px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .doc-layout[b-bhtj1dx1mj] {
        grid-template-columns: 1fr;
    }

    .doc-sidebar[b-bhtj1dx1mj] {
        max-height: 340px;
    }
}

@media (max-width: 640px) {
    .doc-content[b-bhtj1dx1mj] {
        padding: 1rem 1.1rem;
    }

    .doc-page-title[b-bhtj1dx1mj] {
        font-size: 1.15rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* ── Hero ─────────────────────────────────────────────────────────── */
.home-hero[b-5a82k77eki] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 0 1.75rem;
}

.home-hero--guest[b-5a82k77eki] {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 0 2rem;
    gap: 0.5rem;
}

/* Authenticated hero: avatar + text row */
.home-avatar[b-5a82k77eki] {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #196176 0%, #28a1c7 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-title[b-5a82k77eki] {
    font-size: 1.55rem;
    font-weight: 700;
    color: #163844;
    margin: 0;
    letter-spacing: -0.3px;
}

.home-sub[b-5a82k77eki] {
    font-size: 0.9rem;
    color: #567884;
    margin: 0.2rem 0 0;
}

/* Guest hero extras */
.home-guest-logo[b-5a82k77eki] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #196176 0%, #28a1c7 100%);
    color: #fff;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 24px rgba(25, 97, 118, 0.22);
}

.home-hero--guest .home-title[b-5a82k77eki] {
    font-size: 2rem;
}

.home-hero--guest .home-sub[b-5a82k77eki] {
    font-size: 1rem;
    max-width: 520px;
    margin: 0.4rem 0 1.5rem;
}

.home-guest-actions[b-5a82k77eki] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ── Quick-access grid (authenticated) ───────────────────────────── */
.home-grid[b-5a82k77eki] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding-bottom: 2rem;
}

.home-card[b-5a82k77eki] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #ffffff;
    border: 1px solid #d7e2e8;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.home-card:hover[b-5a82k77eki] {
    border-color: #196176;
    box-shadow: 0 4px 16px rgba(25, 97, 118, 0.12);
    transform: translateY(-1px);
    color: inherit;
    text-decoration: none;
}

.home-card-icon[b-5a82k77eki] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-card-icon svg[b-5a82k77eki] {
    width: 20px;
    height: 20px;
}

.home-card-icon--blue[b-5a82k77eki]   { background: #e8f4fb; color: #196176; }
.home-card-icon--teal[b-5a82k77eki]   { background: #e3f5f5; color: #0e8585; }
.home-card-icon--indigo[b-5a82k77eki] { background: #ede9fb; color: #5b4fcc; }
.home-card-icon--amber[b-5a82k77eki]  { background: #fef5e4; color: #b07800; }
.home-card-icon--green[b-5a82k77eki]  { background: #e7f7ee; color: #1d8a53; }
.home-card-icon--slate[b-5a82k77eki]  { background: #f0f2f5; color: #4a5568; }
.home-card-icon--dark[b-5a82k77eki]   { background: #e8edf0; color: #163844; }

.home-card-body[b-5a82k77eki] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.home-card-title[b-5a82k77eki] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #163844;
}

.home-card-desc[b-5a82k77eki] {
    font-size: 0.78rem;
    color: #567884;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-card-arrow[b-5a82k77eki] {
    width: 16px;
    height: 16px;
    color: #b0c8d0;
    flex-shrink: 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.home-card:hover .home-card-arrow[b-5a82k77eki] {
    color: #196176;
    transform: translateX(2px);
}

/* ── Feature grid (guest) ─────────────────────────────────────────── */
.home-features[b-5a82k77eki] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    padding-bottom: 2rem;
    border-top: 1px solid #d7e2e8;
    padding-top: 2rem;
}

.home-feature[b-5a82k77eki] {
    background: #ffffff;
    border: 1px solid #d7e2e8;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
}

.home-feature-icon[b-5a82k77eki] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(25,97,118,0.10) 0%, rgba(40,161,199,0.10) 100%);
    color: #196176;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.home-feature-icon svg[b-5a82k77eki] {
    width: 22px;
    height: 22px;
}

.home-feature-title[b-5a82k77eki] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #163844;
    margin: 0 0 0.4rem;
}

.home-feature-desc[b-5a82k77eki] {
    font-size: 0.82rem;
    color: #567884;
    margin: 0;
    line-height: 1.55;
}
/* /Pages/Logs.razor.rz.scp.css */
/* ── Header ────────────────────────────────────────────────────────── */
.log-header[b-r0gyqxf6nq] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 0 1.5rem;
}

.log-header-icon[b-r0gyqxf6nq] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #163844 0%, #196176 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.log-header-icon svg[b-r0gyqxf6nq] {
    width: 24px;
    height: 24px;
}

.log-title[b-r0gyqxf6nq] {
    font-size: 1.45rem;
    font-weight: 700;
    color: #163844;
    margin: 0;
}

.log-sub[b-r0gyqxf6nq] {
    font-size: 0.875rem;
    color: #567884;
    margin: 0.15rem 0 0;
}

/* ── Filter bar ────────────────────────────────────────────────────── */
.log-filter-bar[b-r0gyqxf6nq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
    background: #fff;
    border: 1px solid #d7e2e8;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
}

.log-filter-group[b-r0gyqxf6nq] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 130px;
}

.log-filter-label[b-r0gyqxf6nq] {
    font-size: 0.72rem;
    font-weight: 600;
    color: #567884;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.log-filter-toggle[b-r0gyqxf6nq] {
    justify-content: flex-end;
}

.log-filter-action[b-r0gyqxf6nq] {
    display: flex;
    align-items: flex-end;
}

/* ── Count bar ─────────────────────────────────────────────────────── */
.log-count-bar[b-r0gyqxf6nq] {
    font-size: 0.78rem;
    color: #567884;
    margin-bottom: 0.6rem;
}

/* ── Table ─────────────────────────────────────────────────────────── */
.log-table[b-r0gyqxf6nq] {
    font-size: 0.8rem;
}

.log-table thead th[b-r0gyqxf6nq] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #567884;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.log-cell-mono[b-r0gyqxf6nq] {
    font-family: "Consolas", "Fira Code", monospace;
    font-size: 0.77rem;
    white-space: nowrap;
}

.log-cell-small[b-r0gyqxf6nq] {
    font-size: 0.76rem;
    color: #567884;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.log-cell-url[b-r0gyqxf6nq] {
    font-family: "Consolas", "Fira Code", monospace;
    font-size: 0.76rem;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.log-method[b-r0gyqxf6nq] {
    font-size: 0.7rem;
    font-weight: 700;
    font-family: "Consolas", "Fira Code", monospace;
}

/* ── Level badges ──────────────────────────────────────────────────── */
.log-badge[b-r0gyqxf6nq] {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 5px;
    padding: 0.1rem 0.45rem;
}

.log-badge-error[b-r0gyqxf6nq] {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

.log-badge-warn[b-r0gyqxf6nq] {
    color: #664d03;
    background: #fff3cd;
    border: 1px solid #ffe69c;
}

.log-badge-info[b-r0gyqxf6nq] {
    color: #0a4a5c;
    background: #cff4fc;
    border: 1px solid #9eeaf9;
}

/* ── Entity badge ──────────────────────────────────────────────────── */
.log-entity-badge[b-r0gyqxf6nq] {
    font-size: 0.68rem;
    font-weight: 600;
    color: #196176;
    background: #eaf4f8;
    border: 1px solid #c5dfe8;
    border-radius: 5px;
    padding: 0.1rem 0.4rem;
}

/* ── Status code colors ────────────────────────────────────────────── */
.log-status-error[b-r0gyqxf6nq] {
    color: #842029;
    font-weight: 600;
}

.log-status-warn[b-r0gyqxf6nq] {
    color: #664d03;
    font-weight: 600;
}

/* ── Expand row ────────────────────────────────────────────────────── */
.log-expand-row td[b-r0gyqxf6nq] {
    padding: 0.4rem 0.75rem 0.75rem;
    background: #f4f8fa;
}

.log-row-expand[b-r0gyqxf6nq] {
    background: transparent;
    font-family: "Consolas", "Fira Code", monospace;
    font-size: 0.76rem;
    white-space: pre-wrap;
    word-break: break-word;
    color: #163844;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
}

/* ── Empty state ───────────────────────────────────────────────────── */
.log-empty[b-r0gyqxf6nq] {
    font-size: 0.85rem;
    color: #567884;
    font-style: italic;
    padding: 1.5rem 0;
}
/* /Pages/Playground.razor.rz.scp.css */
/* ── Header ───────────────────────────────────────────────────────── */
.pg-header[b-m7sg8ik1zv] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 0 1.5rem;
}

.pg-header-icon[b-m7sg8ik1zv] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #163844 0%, #196176 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pg-header-icon svg[b-m7sg8ik1zv] {
    width: 24px;
    height: 24px;
}

.pg-title[b-m7sg8ik1zv] {
    font-size: 1.45rem;
    font-weight: 700;
    color: #163844;
    margin: 0;
}

.pg-sub[b-m7sg8ik1zv] {
    font-size: 0.875rem;
    color: #567884;
    margin: 0.15rem 0 0;
}

/* ── Two-column layout ────────────────────────────────────────────── */
.pg-layout[b-m7sg8ik1zv] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    .pg-layout[b-m7sg8ik1zv] {
        grid-template-columns: 1fr;
    }
}

/* ── Panels ───────────────────────────────────────────────────────── */
.pg-config-panel[b-m7sg8ik1zv],
.pg-exec-panel[b-m7sg8ik1zv] {
    background: #fff;
    border: 1px solid #d7e2e8;
    border-radius: 14px;
    padding: 1.25rem;
}

/* ── Section label ────────────────────────────────────────────────── */
.pg-section-label[b-m7sg8ik1zv] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #567884;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

/* ── Field ────────────────────────────────────────────────────────── */
.pg-field[b-m7sg8ik1zv] {
    margin-bottom: 1rem;
}

.pg-field:last-of-type[b-m7sg8ik1zv] {
    margin-bottom: 0;
}

.pg-label[b-m7sg8ik1zv] {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #163844;
    margin-bottom: 0.35rem;
}

/* ── Skeleton loader ──────────────────────────────────────────────── */
.pg-skeleton[b-m7sg8ik1zv] {
    height: 31px;
    border-radius: 6px;
    background: linear-gradient(90deg, #eaf4f8 25%, #d7e9f0 50%, #eaf4f8 75%);
    background-size: 200% 100%;
    animation: pg-shimmer-b-m7sg8ik1zv 1.4s ease-in-out infinite;
}

@keyframes pg-shimmer-b-m7sg8ik1zv {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Empty hints ──────────────────────────────────────────────────── */
.pg-empty-hint[b-m7sg8ik1zv] {
    font-size: 0.8rem;
    color: #567884;
    font-style: italic;
}

/* ── Service meta ─────────────────────────────────────────────────── */
.pg-service-meta[b-m7sg8ik1zv] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaf4f8;
}

.pg-service-desc[b-m7sg8ik1zv] {
    font-size: 0.8rem;
    color: #567884;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.pg-badge[b-m7sg8ik1zv] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #196176;
    background: #eaf4f8;
    border: 1px solid #c5dfe8;
    border-radius: 6px;
    padding: 0.15rem 0.5rem;
}

/* ── Textarea ─────────────────────────────────────────────────────── */
.pg-textarea[b-m7sg8ik1zv] {
    font-family: "Consolas", "Fira Code", monospace;
    font-size: 0.82rem;
    resize: vertical;
}

/* ── File badge ───────────────────────────────────────────────────── */
.pg-file-badge[b-m7sg8ik1zv] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #205161;
    background: #eaf4f8;
    border: 1px solid #c5dfe8;
    border-radius: 8px;
    padding: 0.3rem 0.65rem;
}

/* ── Result ───────────────────────────────────────────────────────── */
.pg-result[b-m7sg8ik1zv] {
    border-top: 1px solid #d7e2e8;
    padding-top: 1.25rem;
}

.pg-result-header[b-m7sg8ik1zv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pg-result-meta[b-m7sg8ik1zv] {
    display: flex;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #567884;
}

.pg-result-pre[b-m7sg8ik1zv] {
    background: #f4f8fa;
    border: 1px solid #d7e2e8;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    font-size: 0.8rem;
    font-family: "Consolas", "Fira Code", monospace;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 420px;
    overflow-y: auto;
    color: #163844;
    margin: 0;
}

/* ── Download bar ─────────────────────────────────────────────────── */
.pg-download-bar[b-m7sg8ik1zv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.pg-download-bar .btn[b-m7sg8ik1zv] {
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
    border-color: #c5dfe8;
    color: #196176;
}

.pg-download-bar .btn:hover[b-m7sg8ik1zv] {
    background: #eaf4f8;
    border-color: #196176;
}

/* ── System Prompt block ───────────────────────────────────────── */
.pg-prompt-block[b-m7sg8ik1zv] {
    margin-top: 0.9rem;
    background: rgba(25, 97, 118, 0.06);
    border: 1px solid rgba(25, 97, 118, 0.18);
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
}

.pg-prompt-header[b-m7sg8ik1zv] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #196176;
    margin-bottom: 0.45rem;
}

.pg-prompt-text[b-m7sg8ik1zv] {
    font-size: 0.78rem;
    color: #2a4a5a;
    line-height: 1.55;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}
/* /Pages/Subscriptions.razor.rz.scp.css */
.oa-modal-backdrop[b-d3ctdkxq95] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
}

.oa-modal-container[b-d3ctdkxq95] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.oa-modal-card[b-d3ctdkxq95] {
    width: min(1080px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid #d7dce3;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.28);
}

.oa-modal-header[b-d3ctdkxq95] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #e4e9f1;
    position: sticky;
    top: 0;
    background: #ffffff;
}

.oa-modal-body[b-d3ctdkxq95] {
    padding: 1rem;
}
