:root {
    color-scheme: light;
    --bg: #f5f7f4;
    --panel: #ffffff;
    --text: #15201c;
    --muted: #65736d;
    --line: #d9e0dc;
    --primary: #146c5c;
    --primary-strong: #0d5144;
    --accent: #b95f20;
    --danger: #a12b2b;
    --shadow: 0 18px 50px rgba(32, 45, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    font-family: Arial, "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
}

body {
    min-height: 100vh;
    margin: 0;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 68px;
    padding: 12px clamp(18px, 4vw, 48px);
    background: rgba(245, 247, 244, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
}

.nav {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.nav a {
    padding: 8px 12px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 8px;
}

.nav a:hover,
.nav .is-active {
    color: var(--text);
    background: #e8eeea;
}

.user-pill {
    min-width: 56px;
    padding: 7px 12px;
    color: var(--primary-strong);
    text-align: center;
    border: 1px solid #b9d2ca;
    border-radius: 999px;
    background: #eef7f3;
}

.logout-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    color: var(--primary-strong);
    font-weight: 700;
    background: #e8f2ee;
    border: 1px solid #cfe2db;
    border-radius: 8px;
    cursor: pointer;
}

.nav-button:hover,
.small-button:hover {
    background: #d8e9e3;
}

.page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 56px;
}

.hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0 28px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
    max-width: 460px;
}

.hero-meta span {
    padding: 7px 10px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.flash {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
}

.flash-success {
    color: var(--primary-strong);
    background: #eef7f3;
    border-color: #cfe2db;
}

.flash-error {
    color: var(--danger);
    background: #fff2f2;
    border-color: #edcaca;
}

.workspace-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: start;
}

.asset-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin-top: 22px;
}

.panel {
    display: grid;
    gap: 18px;
    padding: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.panel-head h2 {
    margin: 0;
    font-size: 22px;
}

.panel-title {
    display: grid;
    gap: 4px;
}

.panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
}

.panel-head span {
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.field,
.drop-zone {
    display: grid;
    gap: 8px;
}

.field span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.field-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 14px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    color: var(--text);
    background: #fbfcfb;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: none;
}

.field input,
.field select {
    height: 44px;
    padding: 0 12px;
}

.field textarea {
    min-height: 320px;
    padding: 14px;
    resize: vertical;
    font-family: Consolas, "Courier New", monospace;
    line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.drop-zone:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 108, 92, 0.14);
}

.drop-zone {
    min-height: 210px;
    place-items: center;
    padding: 28px;
    color: var(--muted);
    text-align: center;
    border: 2px dashed #b9c8c1;
    border-radius: 8px;
    background: #fbfcfb;
    cursor: pointer;
}

.drop-zone input {
    width: min(100%, 320px);
}

.drop-zone span {
    color: var(--primary);
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: var(--primary);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.button:hover {
    background: var(--primary-strong);
}

.button:disabled:hover {
    background: var(--primary);
}

.button-secondary {
    color: var(--primary-strong);
    background: #e8f2ee;
}

.button-secondary:hover {
    background: #d8e9e3;
}

.result {
    width: min(620px, 100%);
    margin: 56px auto;
    padding: 28px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.result-mark {
    display: inline-grid;
    min-width: 54px;
    height: 34px;
    place-items: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: var(--primary);
    border-radius: 999px;
}

.result-error .result-mark {
    background: var(--danger);
}

.result h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.result p {
    margin: 0;
    color: var(--muted);
}

.deploy-panel {
    text-align: left;
}

.deploy-panel .result-mark,
.deploy-panel h1,
.deploy-panel > p {
    text-align: center;
}

.deploy-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.deploy-log {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 14px;
    color: var(--primary-strong);
    background: #eef7f3;
    border: 1px solid #cfe2db;
    border-radius: 8px;
}

.deploy-checks {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.deploy-check {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.deploy-check strong {
    font-size: 13px;
}

.deploy-check span {
    color: var(--muted);
    font-size: 13px;
}

.deploy-check-warn {
    border-color: #edd7b8;
    background: #fff8ed;
}

.deploy-check-warn strong {
    color: #74420f;
}

.deploy-check-ok {
    border-color: #cfe2db;
    background: #eef7f3;
}

.deploy-check-ok strong {
    color: var(--primary-strong);
}

.link-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.link-list a {
    overflow-wrap: anywhere;
    padding: 12px;
    color: var(--primary-strong);
    background: #eef7f3;
    border: 1px solid #cfe2db;
    border-radius: 8px;
}

.actions {
    margin-top: 22px;
}

.auth-shell {
    display: grid;
    min-height: calc(100vh - 180px);
    place-items: center;
}

.auth-panel {
    width: min(480px, 100%);
}

.editor-panel {
    width: min(980px, 100%);
    margin: 0 auto;
}

.editor-form {
    display: grid;
    gap: 18px;
}

.editor-form textarea {
    min-height: 58vh;
}

.editor-draft-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    color: #74420f;
    background: #fff8ed;
    border: 1px solid #edd7b8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.editor-draft-banner[hidden] {
    display: none;
}

.editor-draft-banner div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.editor-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: end;
}

.editor-code-stats {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    color: var(--muted);
    background: #fbfcfb;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.editor-save-state {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.editor-save-state.is-clean {
    color: var(--primary-strong);
    background: #eef7f3;
    border-color: #cfe2db;
}

.editor-save-state.is-dirty {
    color: #74420f;
    background: #fff8ed;
    border-color: #edd7b8;
}

.editor-save-state.is-saving {
    color: var(--muted);
    background: #fbfcfb;
}

.save-as-row {
    display: grid;
    grid-template-columns: minmax(220px, 360px);
}

.editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-panel .panel-head h1,
.admin-layout .panel-head h1 {
    margin: 0;
    font-size: 24px;
}

.admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 22px;
}

.check-field,
.mini-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
}

.check-field input,
.mini-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

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

.audit-panel {
    margin-top: 22px;
}

.audit-filter {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(128px, 160px)) auto auto;
    gap: 10px;
    align-items: end;
}

.log-panel {
    margin-top: 22px;
}

.log-filter {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 220px) auto auto;
    gap: 10px;
    align-items: end;
}

.user-panel {
    margin-top: 22px;
}

.security-panel {
    margin-bottom: 22px;
}

.maintenance-panel {
    margin-bottom: 22px;
}

.maintenance-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.maintenance-action-form {
    display: inline-flex;
}

.maintenance-stats span {
    min-height: 30px;
    padding: 7px 10px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fbfcfb;
}

.maintenance-list {
    display: grid;
    gap: 8px;
}

.maintenance-file {
    display: grid;
    gap: 4px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.maintenance-file strong {
    overflow-wrap: anywhere;
}

.maintenance-file span {
    color: var(--muted);
    font-size: 13px;
}

.maintenance-detail-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.maintenance-detail-list summary {
    padding: 10px 12px;
    color: var(--primary-strong);
    font-weight: 800;
    cursor: pointer;
}

.maintenance-detail-list p {
    margin: 0;
    padding: 0 12px 12px;
}

.maintenance-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0 12px 12px;
}

.maintenance-detail-grid > div {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.maintenance-detail-grid span {
    overflow-wrap: anywhere;
    color: var(--muted);
    font-size: 13px;
}

.maintenance-retention-list {
    padding: 0 12px 12px;
}

.maintenance-retention-file {
    padding: 10px 0;
}

.maintenance-retention-file span:last-child {
    color: var(--text);
}

.warning-list {
    display: grid;
    gap: 10px;
}

.warning-list .flash {
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
}

.user-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
}

.user-table th,
.user-table td {
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.user-table th {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.inline-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.quota-control,
.audit-actions,
.audit-bulk-actions,
.notify-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: end;
}

.bulk-audit-form {
    display: inline-flex;
}

.audit-select {
    min-height: 34px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.quota-control label {
    display: grid;
    gap: 4px;
}

.quota-control span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.audit-file-cell {
    min-width: 220px;
}

.risk-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.risk-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.risk-high {
    color: #7b1e1e;
    background: #fff2f2;
    border-color: #edcaca;
}

.risk-medium {
    color: #74420f;
    background: #fff8ed;
    border-color: #edd7b8;
}

.audit-file-list {
    margin-top: 8px;
}

.audit-file-list summary {
    color: var(--primary-strong);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.audit-file-list ul {
    display: grid;
    gap: 6px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.audit-file-list li {
    display: grid;
    gap: 2px;
    padding: 7px 0;
    border-top: 1px solid var(--line);
}

.audit-file-list span {
    overflow-wrap: anywhere;
}

.audit-file-list small {
    color: var(--muted);
}

.audit-detail-panel {
    display: grid;
    gap: 14px;
    margin: 16px 0;
    padding: 14px 0 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.audit-detail-head {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: start;
    justify-content: space-between;
}

.audit-detail-head h3 {
    margin: 0;
    font-size: 20px;
}

.audit-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 18px;
}

.audit-detail-grid div,
.audit-detail-block {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.audit-detail-grid span,
.audit-detail-block > strong,
.audit-detail-file-section summary {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.audit-detail-grid code {
    display: block;
    overflow-wrap: anywhere;
}

.audit-detail-file-section summary {
    cursor: pointer;
}

.audit-detail-files {
    display: grid;
    gap: 0;
    max-height: 360px;
    margin: 0;
    padding: 0;
    overflow: auto;
    list-style: none;
    border-top: 1px solid var(--line);
}

.audit-detail-files li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.audit-detail-files span {
    overflow-wrap: anywhere;
}

.audit-detail-files small {
    color: var(--muted);
}

.log-table {
    min-width: 860px;
}

.log-message {
    overflow-wrap: anywhere;
}

.inline-control select,
.inline-control input[type="password"],
.quota-control input,
.notify-form input {
    min-height: 34px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.quota-control input {
    width: 92px;
}

.notify-form input {
    width: min(260px, 100%);
}

.table-sub {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.user-table code {
    font-family: Consolas, "Courier New", monospace;
    overflow-wrap: anywhere;
}

.stack-actions {
    display: grid;
    gap: 8px;
}

.danger-button {
    color: #fff;
    background: var(--danger);
    border-color: var(--danger);
}

.danger-button:hover {
    background: #7e2020;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 9px;
    color: var(--primary-strong);
    background: #eef7f3;
    border: 1px solid #cfe2db;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.project-list,
.file-list {
    display: grid;
    gap: 10px;
}

.project-tools {
    display: grid;
    gap: 12px;
}

.project-search {
    margin-bottom: 12px;
}

.project-search-empty {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.project-search-empty[hidden] {
    display: none;
}

.filter-form,
.rename-project-form,
.duplicate-project-form,
.project-template-form {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) 130px 130px auto auto;
    gap: 10px;
    align-items: end;
}

.rename-project-form,
.duplicate-project-form,
.project-template-form {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.project-template-form {
    grid-template-columns: minmax(170px, 240px) minmax(0, 1fr) auto;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filters span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    color: var(--primary-strong);
    background: #eef7f3;
    border: 1px solid #cfe2db;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.embed-snippet {
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.embed-snippet textarea {
    min-height: 76px;
    font-size: 12px;
    resize: vertical;
}

.embed-snippet-actions {
    display: flex;
    justify-content: end;
}

.project-item {
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.project-item:hover,
.project-item.is-active {
    border-color: #b9d2ca;
    background: #eef7f3;
}

.project-item span,
.file-main span {
    color: var(--muted);
    font-size: 13px;
}

.file-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.file-row.is-selected {
    border-color: #a8cfc2;
    background: #eef7f3;
}

.file-check {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
}

.file-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.file-main {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.file-main strong {
    overflow-wrap: anywhere;
}

.content-match {
    padding: 7px 9px;
    color: #3f5663;
    background: #f4f8fa;
    border-left: 3px solid #a8cfc2;
    border-radius: 6px;
    overflow-wrap: anywhere;
}

.file-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
}

.file-actions form {
    margin: 0;
}

.selection-count {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    color: var(--muted);
    background: #fbfcfb;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.small-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.small-button.is-disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.empty-state {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 22px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed #b9c8c1;
    border-radius: 8px;
    background: #fbfcfb;
}

.empty-state p,
.empty-state form {
    margin: 0;
}

.activity-panel {
    margin-top: 22px;
}

.activity-filter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
    align-items: end;
}

.public-projects-panel,
.public-discovery-panel {
    margin-top: 22px;
}

.activity-list {
    display: grid;
    gap: 10px;
}

.activity-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.activity-kind {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 8px;
    color: var(--primary-strong);
    font-size: 13px;
    font-weight: 800;
    background: #eef7f3;
    border: 1px solid #cfe2db;
    border-radius: 999px;
}

.activity-main {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.activity-main strong {
    overflow-wrap: anywhere;
}

.activity-main span {
    color: var(--muted);
    font-size: 13px;
}

.activity-link {
    justify-self: end;
}

.notice-panel,
.public-list-panel {
    margin-top: 22px;
}

.notice-panel p {
    margin: 8px 0 0;
}

.muted {
    color: var(--muted);
    font-size: 13px;
}

.publish-project-form {
    display: grid;
    grid-template-columns: minmax(130px, 180px) minmax(180px, 1fr) auto auto auto;
    gap: 10px;
    align-items: end;
}

.checkbox-field {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    color: var(--muted);
    font-size: 14px;
}

.checkbox-field input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

@media (max-width: 820px) {
    .topbar {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .hero,
    .panel-head {
        align-items: start;
        flex-direction: column;
    }

    .hero-meta {
        justify-content: start;
    }

    .workspace-grid,
    .asset-layout,
    .field-row,
    .admin-layout,
    .settings-grid,
    .maintenance-detail-grid,
    .audit-detail-grid,
    .audit-filter,
    .log-filter,
    .filter-form,
    .rename-project-form,
    .duplicate-project-form,
    .project-template-form,
    .publish-project-form {
        grid-template-columns: 1fr;
    }

    .file-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .file-actions {
        grid-column: 1 / -1;
        justify-content: start;
    }

    .activity-row {
        grid-template-columns: 1fr;
    }

    .activity-link {
        justify-self: start;
    }

    .audit-detail-files li {
        grid-template-columns: 1fr;
    }

    .field textarea {
        min-height: 260px;
    }
}
