:root {
  --ink: #142033;
  --muted: #69778c;
  --line: #d8e3f2;
  --paper: #f4f8fd;
  --panel: #ffffff;
  --green: #1f6fbf;
  --green-deep: #0d3b75;
  --mint: #e7f1ff;
  --red: #b54034;
  --amber: #b66d1d;
  --blue: #1f6fbf;
  --shadow: 0 18px 45px rgba(22, 48, 88, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  background:
    linear-gradient(135deg, rgba(31, 111, 191, 0.1), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(101, 164, 233, 0.16), transparent 26%),
    var(--paper);
}

[hidden] {
  display: none !important;
}

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

button {
  cursor: pointer;
}

.login-view {
  min-height: 100vh;
  padding: 28px;
  display: none;
  place-items: center;
  color: #f8fbf7;
  background:
    linear-gradient(rgba(10, 42, 85, 0.84), rgba(10, 42, 85, 0.92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='780' height='520' viewBox='0 0 780 520'%3E%3Crect width='780' height='520' fill='%230d3b75'/%3E%3Cpath d='M73 378c86-126 202-150 309-73 78 57 125 63 197 17 46-29 83-71 141-83v281H73Z' fill='%231f6fbf' opacity='.58'/%3E%3Ccircle cx='216' cy='151' r='82' fill='%23ffffff' opacity='.12'/%3E%3Ccircle cx='546' cy='146' r='47' fill='%23e7f1ff' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover;
}

.auth-locked .login-view {
  display: grid;
}

.auth-locked .app-shell,
.auth-locked .task-dialog {
  display: none;
}

.login-panel {
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.login-brand {
  margin-bottom: 26px;
}

.login-form {
  display: grid;
  gap: 14px;
}

.login-form label:not(.remember-row) {
  display: grid;
  gap: 7px;
}

.login-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input:not([type]) {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.login-form input:focus {
  border-color: rgba(255, 255, 255, 0.72);
}

.remember-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.remember-row input {
  width: 16px;
  height: 16px;
}

.login-error {
  min-height: 22px;
  margin: 0;
  color: #ffe1d9;
  font-size: 13px;
}

.login-submit {
  width: 100%;
  border-color: #f2f7ed;
  color: var(--green-deep);
  background: #f2f7ed;
}

.app-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #f8fbf7;
  background:
    linear-gradient(rgba(10, 42, 85, 0.84), rgba(10, 42, 85, 0.92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Crect width='420' height='420' fill='%230d3b75'/%3E%3Cpath d='M52 128c52-69 133-71 176-16 26 33 43 76 77 83 28 6 48-16 66-42v177H52Z' fill='%231f6fbf' opacity='.5'/%3E%3Ccircle cx='111' cy='105' r='42' fill='%23e7f1ff' opacity='.2'/%3E%3Cpath d='M217 69c19 0 35 16 35 35s-16 35-35 35-35-16-35-35 16-35 35-35Zm0 15c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20Z' fill='%23ffffff' opacity='.16'/%3E%3C/svg%3E");
  background-size: cover;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 5px;
  color: inherit;
  opacity: 0.66;
  font-size: 12px;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 20px;
}

h2 {
  margin-bottom: 0;
  font-size: 32px;
}

h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.summary-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.summary-card div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-card strong {
  font-size: 38px;
}

.summary-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

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

.nav-list {
  display: grid;
  gap: 8px;
  overflow: auto;
}

.page-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.page-button {
  min-height: 44px;
  padding: 0 10px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
}

.page-button.is-active {
  color: var(--green-deep);
  background: #f7fbff;
}

.owner-button {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.owner-button.is-active {
  color: var(--green-deep);
  background: #f2f7ed;
}

.owner-manage-button {
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.workspace {
  padding: 24px clamp(18px, 3vw, 40px) 40px;
  min-width: 0;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.topbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-box {
  min-width: min(380px, 42vw);
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.metrics {
  margin: 24px 0 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.metric {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: 0 10px 24px rgba(37, 43, 39, 0.06);
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin: 8px 0;
  font-size: 34px;
}

.metric.urgent {
  border-color: rgba(181, 64, 52, 0.32);
  background: #fff4ef;
}

.metric.warm {
  border-color: rgba(182, 109, 29, 0.32);
  background: #fff8e8;
}

.metric.calm {
  border-color: rgba(31, 111, 191, 0.26);
  background: #eef6ff;
}

.controls {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.segmented {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.segment {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
}

.segment.is-active {
  color: #fff;
  background: var(--green);
}

select,
input,
textarea {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

.controls select {
  min-height: 44px;
  padding: 0 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.content-grid.list-mode {
  grid-template-columns: 1fr;
}

.content-grid.mine-mode {
  grid-template-columns: 1fr;
}

.planner-view {
  display: grid;
  gap: 14px;
}

.inbox-view {
  display: grid;
  gap: 14px;
}

.customer-view {
  display: grid;
  gap: 14px;
}

.customer-form,
.customer-toolbar,
.customer-card,
.inbox-form,
.inbox-toolbar,
.inbox-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(22, 48, 88, 0.06);
}

.customer-form,
.inbox-form {
  padding: 18px;
}

.customer-form-head,
.customer-toolbar,
.customer-card-head,
.customer-form-actions,
.inbox-form-head,
.inbox-toolbar,
.inbox-card-main,
.inbox-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.compact-form {
  margin-bottom: 12px;
}

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

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

.customer-card {
  padding: 15px;
}

.customer-card-head {
  align-items: flex-start;
}

.customer-card-head h3 {
  font-size: 18px;
}

.customer-notes,
.customer-empty-record {
  margin: 10px 0 0;
  line-height: 1.6;
}

.customer-notes {
  color: var(--muted);
}

.follow-compose {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.follow-compose textarea {
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
  resize: vertical;
}

.follow-history {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.follow-record {
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  border-left: 3px solid rgba(31, 111, 191, 0.32);
  background: #f8fbff;
}

.follow-record span {
  color: var(--muted);
  font-size: 12px;
}

.follow-record p {
  margin: 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.inbox-card {
  padding: 15px;
}

.inbox-card.is-processed {
  opacity: 0.76;
}

.inbox-card-main {
  align-items: flex-start;
}

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

.inbox-notes {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.customer-toolbar,
.inbox-toolbar {
  padding: 10px;
}

.planner-toolbar,
.planner-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.planner-date-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.planner-date-controls input {
  min-height: 42px;
  padding: 0 10px;
}

.planner-head {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(22, 48, 88, 0.06);
}

.planner-head h3 {
  font-size: 20px;
}

.planner-day-summary {
  color: var(--muted);
}

.day-calendar {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 16px 36px rgba(22, 48, 88, 0.08);
}

.calendar-times,
.calendar-grid {
  position: relative;
}

.calendar-times {
  border-right: 1px solid var(--line);
  background: #f8fbff;
}

.calendar-hour {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #e7eef8;
}

.calendar-hour span {
  position: absolute;
  top: -10px;
  left: 14px;
  color: var(--muted);
  font-size: 12px;
}

.calendar-grid {
  overflow: hidden;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 71px, #e7eef8 72px),
    #fff;
}

.calendar-slot {
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  border: 0;
  background: transparent;
}

.calendar-slot:hover {
  background: rgba(31, 111, 191, 0.05);
}

.plan-block {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  align-content: start;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(31, 111, 191, 0.28);
  color: #0d3b75;
  background: #e7f1ff;
  box-shadow: 0 10px 20px rgba(22, 48, 88, 0.12);
}

.plan-block strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-block span {
  color: rgba(13, 59, 117, 0.75);
  font-size: 12px;
}

.plan-block.meeting {
  border-color: rgba(182, 109, 29, 0.32);
  color: #7a430e;
  background: #fff4dc;
}

.plan-block.focus {
  border-color: rgba(22, 120, 98, 0.3);
  color: #0f5647;
  background: #e8f8f2;
}

.plan-block.personal {
  border-color: rgba(83, 91, 173, 0.3);
  color: #343b8f;
  background: #eef0ff;
}

.lane {
  min-width: 0;
}

.lane-head {
  min-height: 46px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lane-head h3 {
  font-size: 16px;
}

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

.task-stack {
  display: grid;
  gap: 10px;
}

.task-card {
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 22px rgba(37, 43, 39, 0.06);
}

.task-card.is-done {
  opacity: 0.72;
}

.task-card.is-done .task-title {
  text-decoration: line-through;
}

.task-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-button {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
  background: #f9fbf7;
}

.check-button:disabled {
  cursor: default;
  opacity: 0.58;
}

.task-main {
  min-width: 0;
  flex: 1;
}

.task-title {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
  line-height: 1.42;
}

.task-meta,
.child-meta {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill {
  min-height: 24px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fbfaf6;
  font-size: 12px;
}

.pill.high {
  color: var(--red);
  border-color: rgba(181, 64, 52, 0.28);
  background: #fff1ee;
}

.pill.medium {
  color: var(--amber);
  border-color: rgba(182, 109, 29, 0.28);
  background: #fff8e8;
}

.pill.overdue {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.pill.soon {
  color: #1f2523;
  border-color: #e4b65b;
  background: #ffe6a8;
}

.pill.normal {
  color: var(--green-deep);
  border-color: rgba(31, 111, 191, 0.25);
  background: var(--mint);
}

.icon-button,
.primary-button,
.ghost-button,
.danger-button {
  min-height: 42px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.icon-button {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border-color: var(--line);
  background: #fff;
}

.icon-button.danger-icon {
  color: var(--red);
  border-color: rgba(181, 64, 52, 0.28);
  background: #fff7f5;
}

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

.primary-button {
  padding: 0 16px;
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.ghost-button {
  padding: 0 12px;
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.workspace .ghost-button,
.task-dialog .ghost-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.logout-button {
  min-width: 96px;
}

.danger-button {
  padding: 0 13px;
  color: var(--red);
  border-color: rgba(181, 64, 52, 0.28);
  background: #fff4ef;
}

.task-actions {
  display: flex;
  gap: 5px;
}

.content-grid.mine-mode .task-card {
  padding: 12px 14px;
}

.content-grid.mine-mode .task-row {
  align-items: center;
}

.content-grid.mine-mode .task-main {
  display: flex;
  min-width: 0;
  gap: 14px;
  align-items: center;
}

.content-grid.mine-mode .task-title {
  flex: 0 1 360px;
  min-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-grid.mine-mode .task-meta {
  margin-top: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
}

.content-grid.mine-mode .pill {
  flex: 0 0 auto;
  white-space: nowrap;
}

.content-grid.mine-mode .task-actions {
  margin-left: auto;
  flex: 0 0 auto;
}

.child-list {
  margin: 13px 0 0 38px;
  padding: 11px 0 0;
  display: grid;
  gap: 8px;
  border-top: 1px dashed var(--line);
}

.child-item {
  padding: 10px;
  border-left: 3px solid rgba(23, 116, 91, 0.35);
  background: #f9faf5;
}

.empty-state {
  min-height: 220px;
  padding: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.task-dialog {
  width: min(720px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.task-dialog::backdrop {
  background: rgba(18, 29, 25, 0.46);
}

.task-dialog form {
  padding: 22px;
}

.dialog-head,
.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
}

.form-grid textarea {
  resize: vertical;
}

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

.dialog-actions {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
}

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

.owner-create {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.owner-create label {
  display: grid;
  gap: 7px;
}

.owner-create span,
.owner-row-meta {
  color: var(--muted);
  font-size: 13px;
}

.owner-create input,
.owner-row input {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
}

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

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

.owner-row-main {
  display: grid;
  gap: 5px;
}

svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

@media (max-width: 920px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    width: 100%;
    max-width: 100vw;
  }

  .nav-list {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar,
  .topbar-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .workspace,
  .sidebar,
  .login-view {
    padding: 18px;
    width: 100vw;
    max-width: 100vw;
  }

  .summary-card div {
    display: block;
    gap: 14px;
  }

  .summary-card strong {
    display: block;
    margin-top: 4px;
    font-size: 30px;
  }

  .nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .owner-button {
    min-width: 0;
  }

  h2 {
    font-size: 26px;
  }

  .metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.mine-mode {
    grid-template-columns: 1fr;
  }

  .content-grid.mine-mode .task-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .content-grid.mine-mode .task-title {
    width: 100%;
    min-width: 0;
  }

  .content-grid.mine-mode .task-meta {
    flex-wrap: wrap;
  }

  .planner-toolbar,
  .planner-head,
  .customer-form-head,
  .customer-toolbar,
  .customer-card-head,
  .customer-form-actions,
  .inbox-form-head,
  .inbox-toolbar,
  .inbox-card-main,
  .inbox-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inbox-actions {
    justify-content: stretch;
  }

  .inbox-actions .primary-button,
  .inbox-actions .ghost-button {
    flex: 1 1 140px;
  }

  .follow-compose,
  .follow-record {
    grid-template-columns: 1fr;
  }

  .day-calendar {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .calendar-hour span {
    left: 8px;
    font-size: 11px;
  }

  .plan-block {
    left: 8px;
    right: 8px;
  }

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

  .segmented,
  .controls select,
  .primary-button {
    width: 100%;
  }

  .segment {
    flex: 1;
    padding: 0 8px;
  }

  .dialog-actions {
    grid-template-columns: 1fr 1fr;
  }

  .dialog-actions span {
    display: none;
  }
}
