.edm-shell {
    --edm-ink: #17233d;
    --edm-muted: #5f6f85;
    --edm-subtle: #78879b;
    --edm-line: #d8e3f0;
    --edm-line-strong: #b9c9dd;
    --edm-surface: #ffffff;
    --edm-surface-soft: #f5f8fc;
    --edm-accent: #2563eb;
    --edm-accent-hover: #1d4ed8;
    --edm-accent-soft: #eef4ff;
    --edm-danger: #a93030;
    --edm-danger-soft: #fff1f0;
    --edm-warning: #8a5a08;
    --edm-warning-soft: #fff7e6;
    display: grid;
    gap: 16px;
    color: var(--edm-ink);
}

.edm-shell *,
.edm-mask * {
    box-sizing: border-box;
}

.edm-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border: 1px solid var(--edm-line);
    border-radius: 14px;
    background: var(--edm-surface);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .06);
}

.edm-hero > div {
    min-width: 0;
}

.edm-hero span,
.edm-dialog header > span,
.edm-detail-header > div > span {
    display: block;
    color: var(--edm-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.edm-hero h1 {
    margin: 5px 0 6px;
    color: var(--edm-ink);
    font-size: clamp(24px, 2.2vw, 30px);
    line-height: 1.2;
}

.edm-hero p,
.edm-dialog header p,
.edm-roadmap p {
    max-width: 780px;
    margin: 0;
    color: var(--edm-muted);
    line-height: 1.65;
}

.edm-button,
.edm-link-button,
.edm-corner-close {
    font: inherit;
}

.edm-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid var(--edm-line-strong);
    border-radius: 8px;
    background: var(--edm-surface);
    color: #28405f;
    font-weight: 650;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, transform .08s ease;
}

.edm-button:hover:not(:disabled) {
    border-color: #86a3d0;
    background: #f7faff;
}

.edm-button:active:not(:disabled),
.edm-link-button:active:not(:disabled) {
    transform: translateY(1px);
}

.edm-button-primary {
    border-color: var(--edm-accent);
    background: var(--edm-accent);
    color: #f8fffb;
}

.edm-button-primary:hover:not(:disabled) {
    border-color: var(--edm-accent-hover);
    background: var(--edm-accent-hover);
}

.edm-button:focus-visible,
.edm-link-button:focus-visible,
.edm-corner-close:focus-visible,
.edm-field input:focus-visible,
.edm-field textarea:focus-visible,
.edm-field select:focus-visible,
.edm-search input:focus-visible,
.edm-detail-layout nav a:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .24);
    outline-offset: 2px;
}

.edm-button:disabled,
.edm-field input:disabled,
.edm-field textarea:disabled,
.edm-field select:disabled {
    cursor: not-allowed;
    opacity: .56;
}

.edm-principle {
    display: grid;
    grid-template-columns: minmax(90px, auto) 1fr;
    gap: 14px;
    align-items: start;
    padding: 13px 16px;
    border: 1px solid #ceddf2;
    border-left: 4px solid var(--edm-accent);
    border-radius: 8px;
    background: var(--edm-accent-soft);
}

.edm-principle strong {
    color: #1f4f91;
}

.edm-principle span {
    color: #4b627e;
    line-height: 1.55;
}

.edm-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.edm-kpis article {
    min-width: 0;
    padding: 16px 17px;
    border: 1px solid var(--edm-line);
    border-radius: 10px;
    background: var(--edm-surface);
}

.edm-kpis span {
    display: block;
    color: var(--edm-muted);
    font-size: 13px;
}

.edm-kpis strong {
    display: block;
    margin-top: 7px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 26px;
    font-variant-numeric: tabular-nums;
}

.edm-roadmap {
    padding: 18px 20px;
    border: 1px solid var(--edm-line);
    border-radius: 10px;
    background: var(--edm-surface);
}

.edm-roadmap h2 {
    margin: 0 0 8px;
    font-size: 17px;
}

.edm-search {
    display: grid;
    gap: 7px;
    padding: 14px 16px;
    border: 1px solid var(--edm-line);
    border-radius: 10px;
    background: var(--edm-surface);
}

.edm-search > label {
    color: #405875;
    font-size: 13px;
    font-weight: 700;
}

.edm-search > div {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    gap: 8px;
}

.edm-search input,
.edm-field input,
.edm-field textarea,
.edm-field select {
    width: 100%;
    border: 1px solid #afbed2;
    border-radius: 8px;
    background: var(--edm-surface);
    color: var(--edm-ink);
    font: inherit;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.edm-search input {
    min-height: 40px;
    padding: 0 12px;
}

.edm-search input::placeholder,
.edm-field input::placeholder,
.edm-field textarea::placeholder {
    color: #6f7f92;
    opacity: 1;
}

.edm-table {
    overflow: auto;
    border: 1px solid var(--edm-line);
    border-radius: 10px;
    background: var(--edm-surface);
}

.edm-table table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.edm-table th,
.edm-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e4eaf3;
    text-align: left;
    vertical-align: middle;
}

.edm-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--edm-surface-soft);
    color: #465f7b;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .02em;
    white-space: nowrap;
}

.edm-table tbody tr:hover {
    background: #f8faff;
}

.edm-table tbody tr:last-child td {
    border-bottom: 0;
}

.edm-table td {
    max-width: 300px;
    color: #243b59;
    overflow-wrap: anywhere;
}

.edm-table code {
    white-space: normal;
}

.edm-link-button {
    padding: 3px 0;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: var(--edm-accent);
    font-weight: 700;
    cursor: pointer;
}

.edm-link-button:hover {
    border-bottom-color: currentColor;
}

.edm-muted {
    color: var(--edm-subtle);
}

.edm-empty {
    display: grid;
    gap: 6px;
    justify-items: center;
    padding: 44px 24px;
    text-align: center;
}

.edm-empty strong {
    color: #314a69;
    font-size: 16px;
}

.edm-empty span {
    max-width: 480px;
    color: var(--edm-muted);
    line-height: 1.55;
}

.edm-empty-error strong {
    color: var(--edm-danger);
}

.edm-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--edm-muted);
    font-size: 13px;
}

.edm-status {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    padding: 2px 9px;
    border: 1px solid #cfdaea;
    border-radius: 999px;
    background: #f2f6fb;
    color: #405a76;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.edm-status-success {
    border-color: #acd2bf;
    background: #e9f6ef;
    color: #176243;
}

.edm-status-warning {
    border-color: #e5ca8c;
    background: var(--edm-warning-soft);
    color: var(--edm-warning);
}

.edm-status-danger {
    border-color: #e3afaa;
    background: var(--edm-danger-soft);
    color: var(--edm-danger);
}

.edm-mask {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 23, 42, .58);
}

body.edm-modal-open {
    overflow: hidden;
}

.edm-dialog {
    --edm-ink: #17233d;
    --edm-muted: #5f6f85;
    --edm-subtle: #78879b;
    --edm-line: #d8e3f0;
    --edm-line-strong: #b9c9dd;
    --edm-surface: #ffffff;
    --edm-surface-soft: #f5f8fc;
    --edm-accent: #2563eb;
    --edm-accent-hover: #1d4ed8;
    --edm-accent-soft: #eef4ff;
    --edm-danger: #a93030;
    --edm-danger-soft: #fff1f0;
    position: relative;
    width: min(900px, 96vw);
    max-height: min(92vh, 960px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
    background: var(--edm-surface);
    color: var(--edm-ink);
    box-shadow: 0 28px 80px rgba(15, 23, 42, .28);
}

.edm-dialog > header,
.edm-dialog > form,
.edm-dialog > footer,
.edm-detail-layout {
    padding-right: 26px;
    padding-left: 26px;
}

.edm-dialog > header {
    padding-top: 23px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--edm-line);
}

.edm-dialog header h2 {
    margin: 5px 52px 5px 0;
    font-size: 23px;
    line-height: 1.25;
}

.edm-corner-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--edm-line);
    border-radius: 8px;
    background: var(--edm-surface);
    color: #3d5147;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.edm-corner-close:hover {
    background: var(--edm-surface-soft);
}

.edm-dialog > form {
    padding-top: 20px;
    padding-bottom: 24px;
}

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

.edm-field {
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
}

.edm-field-wide {
    grid-column: 1 / -1;
}

.edm-field label {
    color: #263b31;
    font-size: 13px;
    font-weight: 750;
}

.edm-field label > span[aria-hidden="true"] {
    margin-left: 4px;
    color: var(--edm-danger);
}

.edm-field input,
.edm-field select {
    min-height: 42px;
    padding: 0 11px;
}

.edm-field textarea {
    min-height: 106px;
    padding: 10px 11px;
    line-height: 1.55;
    resize: vertical;
}

.edm-field input:hover:not(:disabled),
.edm-field textarea:hover:not(:disabled),
.edm-field select:hover:not(:disabled),
.edm-search input:hover:not(:disabled) {
    border-color: #7f9c8d;
}

.edm-field input:focus,
.edm-field textarea:focus,
.edm-field select:focus,
.edm-search input:focus {
    border-color: var(--edm-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .11);
}

.edm-help,
.edm-field-error {
    display: block;
    min-height: 17px;
    font-size: 12px;
    line-height: 1.4;
}

.edm-help {
    color: #5f7067;
}

.edm-field-error {
    color: var(--edm-danger);
    font-weight: 650;
}

.edm-field-invalid input,
.edm-field-invalid textarea,
.edm-field-invalid select {
    border-color: var(--edm-danger);
    background: #fffafa;
}

.edm-form-summary,
.edm-form-error {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #dda7a2;
    border-radius: 8px;
    background: var(--edm-danger-soft);
    color: #842626;
    line-height: 1.5;
}

.edm-form-summary strong {
    display: block;
    margin-bottom: 5px;
}

.edm-form-summary ul {
    display: grid;
    gap: 3px;
    margin: 0;
    padding-left: 18px;
}

.edm-form-summary button {
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.edm-dialog form > footer,
.edm-dialog > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--edm-line);
    background: #fbfcfb;
}

.edm-dialog form > footer {
    margin: 22px -26px -24px;
    padding: 16px 26px;
}

.edm-dialog > footer {
    position: sticky;
    bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
}

.edm-dialog footer > div:last-child {
    display: flex;
    gap: 8px;
}

.edm-save-note,
.edm-record-meta {
    color: var(--edm-muted);
    font-size: 12px;
    line-height: 1.5;
}

.edm-record-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.edm-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.edm-detail-header .edm-status {
    margin: 5px 50px 0 0;
}

.edm-detail-layout {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 26px;
    padding-top: 22px;
    padding-bottom: 28px;
}

.edm-detail-layout > nav {
    position: sticky;
    top: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    height: fit-content;
}

.edm-detail-layout > nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    color: #42594e;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.edm-detail-layout > nav a:hover {
    background: var(--edm-accent-soft);
    color: var(--edm-accent);
}

.edm-detail-layout > nav span {
    color: var(--edm-subtle);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
}

.edm-detail-sections {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.edm-detail-section h3 {
    margin: 0 0 10px;
    color: #2a4035;
    font-size: 15px;
}

.edm-detail-section dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--edm-line);
    border-radius: 9px;
    background: var(--edm-line);
}

.edm-detail-section dl > div {
    min-width: 0;
    padding: 12px 13px;
    background: var(--edm-surface);
}

.edm-detail-section dl > .edm-detail-wide {
    grid-column: 1 / -1;
}

.edm-detail-section dt {
    margin-bottom: 5px;
    color: #65776d;
    font-size: 12px;
}

.edm-detail-section dd {
    margin: 0;
    color: #20342a;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.edm-relation-value {
    display: grid;
    gap: 3px;
}

.edm-relation-value strong {
    font-weight: 700;
}

.edm-relation-value small {
    color: var(--edm-subtle);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
}

.edm-json {
    max-height: 320px;
    overflow: auto;
    margin: 0;
    padding: 11px 12px;
    border: 1px solid #dde6e1;
    border-radius: 7px;
    background: #f6f9f7;
    color: #2a4035;
    font-size: 12px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.edm-loading {
    padding: 0 0 36px;
    color: var(--edm-muted);
    text-align: center;
}

.edm-detail-skeleton {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 42px 28px 20px;
}

.edm-detail-skeleton i {
    min-height: 74px;
    border-radius: 8px;
    background: #edf2ef;
}

.edm-hidden {
    display: none !important;
}

.edm-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .edm-button,
    .edm-search input,
    .edm-field input,
    .edm-field textarea,
    .edm-field select {
        transition: none;
    }
}

@media (max-width: 760px) {
    .edm-hero,
    .edm-principle,
    .edm-dialog form > footer,
    .edm-dialog > footer,
    .edm-detail-header {
        display: grid;
    }

    .edm-hero .edm-button {
        width: 100%;
    }

    .edm-search > div {
        grid-template-columns: 1fr 1fr;
    }

    .edm-search input {
        grid-column: 1 / -1;
    }

    .edm-form-grid,
    .edm-detail-section dl,
    .edm-detail-skeleton {
        grid-template-columns: 1fr;
    }

    .edm-detail-layout {
        grid-template-columns: 1fr;
    }

    .edm-detail-layout > nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edm-page {
        align-items: stretch;
        flex-direction: column;
    }

    .edm-dialog {
        width: 100%;
        max-height: 94vh;
    }

    .edm-dialog > header,
    .edm-dialog > form,
    .edm-dialog > footer,
    .edm-detail-layout {
        padding-right: 18px;
        padding-left: 18px;
    }

    .edm-dialog form > footer {
        margin-right: -18px;
        margin-left: -18px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .edm-dialog footer > div:last-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .edm-detail-header .edm-status {
        margin: 0;
        justify-self: start;
    }
}

@media (max-width: 520px) {
    .edm-mask {
        align-items: end;
        padding: 0;
    }

    .edm-dialog {
        max-height: 96dvh;
        border-radius: 14px 14px 0 0;
    }

    .edm-detail-layout > nav {
        grid-template-columns: 1fr;
    }
}

.edm-workspace-dialog {
    width: min(1380px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
}

.edm-relation-picker {
    display: grid;
    grid-template-columns: minmax(120px, 0.72fr) minmax(180px, 1.28fr);
    gap: 8px;
}

.edm-relation-picker input[type="search"] {
    min-width: 0;
    border-style: dashed;
    background: #fbfcfd;
}

@media (max-width: 620px) {
    .edm-relation-picker {
        grid-template-columns: 1fr;
    }
}

.edm-workspace-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.edm-workspace-header .edm-status {
    margin: 8px 42px 0 0;
}

.edm-workspace-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1px;
    margin: 0 28px;
    overflow: hidden;
    border: 1px solid var(--edm-border, #dfe5ea);
    border-radius: 10px;
    background: var(--edm-border, #dfe5ea);
}

.edm-workspace-metrics > div {
    min-width: 0;
    padding: 13px 14px;
    background: #fff;
}

.edm-workspace-metrics span,
.edm-workspace-metrics strong {
    display: block;
}

.edm-workspace-metrics span {
    overflow: hidden;
    color: #64717c;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.edm-workspace-metrics strong {
    margin-top: 5px;
    color: #17232c;
    font-size: 21px;
    font-variant-numeric: tabular-nums;
}

.edm-workspace-body {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 470px;
    margin-top: 18px;
    border-top: 1px solid #e7ebee;
}

.edm-workspace-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 12px 18px 20px;
    border-right: 1px solid #e7ebee;
    background: #f8fafb;
}

.edm-workspace-tabs button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 10px 0 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #46545f;
    font: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
}

.edm-workspace-tabs button:hover {
    background: #eef3f6;
}

.edm-workspace-tabs button[aria-selected="true"] {
    background: #e7f2ef;
    color: #146b5c;
    font-weight: 700;
}

.edm-workspace-tabs button span {
    min-width: 23px;
    padding: 2px 6px;
    border-radius: 10px;
    background: rgba(23, 107, 92, 0.08);
    color: inherit;
    font-size: 11px;
    text-align: center;
}

.edm-workspace-panels {
    min-width: 0;
    padding: 20px 24px 28px;
    overflow: auto;
}

.edm-workspace-panel {
    display: none;
}

.edm-workspace-panel.is-active {
    display: block;
}

.edm-workspace-panel > header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.edm-workspace-panel > header span,
.edm-workspace-panel > header h3 {
    display: block;
    margin: 0;
}

.edm-workspace-panel > header span {
    margin-bottom: 4px;
    color: #687680;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.edm-workspace-panel > header h3 {
    color: #17232c;
    font-size: 20px;
}

.edm-workspace-panel > header > strong {
    color: #65727c;
    font-size: 12px;
}

.edm-workspace-table {
    margin-bottom: 14px;
    overflow: auto;
    border: 1px solid #e1e7eb;
    border-radius: 8px;
}

.edm-workspace-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    white-space: nowrap;
}

.edm-workspace-table th,
.edm-workspace-table td {
    max-width: 260px;
    padding: 10px 12px;
    overflow: hidden;
    border-bottom: 1px solid #edf0f2;
    text-align: left;
    text-overflow: ellipsis;
}

.edm-workspace-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f7f9fa;
    color: #5d6a74;
    font-weight: 700;
}

.edm-workspace-table tr:last-child td {
    border-bottom: 0;
}

.edm-workspace-empty {
    display: grid;
    gap: 5px;
    margin-bottom: 14px;
    padding: 24px;
    border: 1px dashed #cdd7dd;
    border-radius: 8px;
    background: #fbfcfc;
    color: #687680;
    text-align: center;
}

.edm-workspace-empty strong {
    color: #36444e;
}

.edm-workspace-intro {
    margin: -4px 0 16px;
    color: #5c6973;
    font-size: 13px;
}

.edm-workspace-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.edm-workspace-ai-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid #dfe6e9;
    border-radius: 9px;
    background: #fff;
}

.edm-workspace-ai-grid article > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: #e8f3f0;
    color: #176b5d;
    font-size: 11px;
    font-weight: 800;
}

.edm-workspace-ai-grid strong,
.edm-workspace-ai-grid small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.edm-workspace-ai-grid strong {
    color: #26343d;
    font-size: 13px;
}

.edm-workspace-ai-grid small {
    margin-top: 3px;
    color: #74808a;
    font-size: 11px;
}

@media (max-width: 860px) {
    .edm-workspace-dialog {
        width: 100%;
    }

    .edm-workspace-body {
        grid-template-columns: 1fr;
    }

    .edm-workspace-tabs {
        position: sticky;
        top: 0;
        z-index: 2;
        flex-direction: row;
        padding: 10px 14px;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid #e7ebee;
    }

    .edm-workspace-tabs button {
        flex: 0 0 auto;
        gap: 8px;
    }

    .edm-workspace-ai-grid {
        grid-template-columns: 1fr;
    }
}
