﻿:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", sans-serif;
  --bg: #f6f7f9;
  --ink: #18202b;
  --muted: #667085;
  --line: #d9dee8;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --danger: #dc2626;
  --panel: #ffffff;
  --login-control-height: 44px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body.login-mode {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  cursor: pointer;
  padding: 10px 14px;
  font-weight: 700;
  min-height: 42px;
}

a.button {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}

button:hover {
  background: var(--brand-dark);
}

input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 0;
  width: 100%;
}

.shell {
  min-height: 100vh;
}

.login-panel {
  width: min(420px, calc(100vw - 32px));
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(24, 32, 43, 0.08);
}

body.login-mode .shell {
  display: grid;
  place-items: center;
  height: 100vh;
  overflow: hidden;
}

.login-panel h1,
.content h1,
.sidebar h2 {
  margin: 0;
}

.remember-me {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: var(--login-control-height);
  padding: 0 2px;
  cursor: pointer;
  user-select: none;
}

.stack label.remember-me {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.remember-me input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.remember-me-control {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  color: transparent;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.remember-me-icon {
  width: 14px;
  height: 14px;
}

.remember-me-text {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
  white-space: nowrap;
}

.remember-me input:focus-visible + .remember-me-control {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.remember-me input:checked + .remember-me-control {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.stack label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.error {
  color: var(--danger);
  min-height: 20px;
  margin: 0;
}

.app {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  transition: grid-template-columns 160ms ease;
}

body.sidebar-collapsed .app {
  grid-template-columns: 76px 1fr;
}

.sidebar .brand-block h2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-all;
  overflow-wrap: anywhere;
  max-width: 168px;
}

.sidebar {
  background: #111827;
  color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: padding 160ms ease;
}

.sidebar .muted {
  color: #b8c0cc;
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.nav-group {
  display: grid;
  gap: 6px;
}

.icon-btn {
  position: absolute;
  top: 20px;
  right: -14px;
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(24, 32, 43, 0.14);
  line-height: 1;
  z-index: 2;
}

.icon-btn:hover {
  background: #f3f4f6;
}

.nav,
.ghost {
  text-align: left;
  background: transparent;
  color: #d1d5db;
  border: 1px solid transparent;
}

.nav-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.chevron {
  color: #9ca3af;
  font-size: 12px;
}

.nav-parent.open .chevron {
  transform: rotate(180deg);
}

.subnav {
  display: grid;
  gap: 6px;
  padding-left: 12px;
}

.subnav-item {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid transparent;
  text-align: left;
  padding: 9px 12px;
  min-height: 38px;
  font-weight: 700;
}

.subnav-item:hover,
.subnav-item.active {
  background: #1f2a3d;
  color: white;
}

.nav.active,
.nav:hover,
.ghost:hover {
  background: #243044;
  color: white;
}

.ghost {
  margin-top: auto;
}

body.sidebar-collapsed .sidebar {
  padding: 24px 12px;
  align-items: center;
}

body.sidebar-collapsed .brand-block {
  visibility: hidden;
  height: 30px;
}

body.sidebar-collapsed .sidebar nav {
  width: 100%;
}

body.sidebar-collapsed .nav,
body.sidebar-collapsed .ghost {
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  display: grid;
  place-items: center;
}

body.sidebar-collapsed .nav {
  font-size: 0;
}

body.sidebar-collapsed .nav::before {
  content: attr(data-short);
  font-size: 16px;
}

body.sidebar-collapsed .ghost {
  font-size: 0;
}

body.sidebar-collapsed .ghost::before {
  content: "退";
  font-size: 16px;
}

body.sidebar-collapsed .nav-parent {
  justify-content: center;
}

body.sidebar-collapsed .nav-parent span {
  display: none;
}

body.sidebar-collapsed .nav-parent::before {
  content: attr(data-short);
  font-size: 16px;
}

body.sidebar-collapsed .subnav {
  display: none;
}

.content {
  padding: 28px;
  overflow: auto;
  min-width: 0;
}

.page {
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.upload,
.settings-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.user-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.upload {
  justify-content: flex-end;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  min-width: 0;
}

.quota-summary {
  margin: 0 0 16px;
}

.quota-card {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid #cfe0f5;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.quota-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quota-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.quota-ring {
  --percent: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at center, #ffffff 0 56%, transparent 57%),
    conic-gradient(var(--brand) calc(var(--percent) * 1%), #dbe7fb 0);
  color: var(--ink);
  font-weight: 800;
}

.quota-bar {
  height: 10px;
  background: #dbe7fb;
  border-radius: 999px;
  margin-top: 16px;
  overflow: hidden;
}

.quota-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #16a34a);
  border-radius: inherit;
  min-width: 2px;
  transition: width 160ms ease;
}

.quota-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.quota-stats span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 224, 245, 0.9);
  border-radius: 8px;
  padding: 9px 10px;
  overflow-wrap: anywhere;
}

.apple-notes {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  min-height: calc(100vh - 48px);
  background: #fffdf7;
  border: 1px solid #e7e2d6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(26, 22, 13, 0.08);
}

.notes-list-pane {
  background: #f7f4ed;
  border-right: 1px solid #e3ded1;
  padding: 22px 18px;
  min-width: 0;
}

.notes-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.notes-list-head h1 {
  margin: 0 0 4px;
  font-size: 28px;
}

.note-icon-btn {
  width: 42px;
  height: 42px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #3f3a2f;
  box-shadow: 0 8px 22px rgba(78, 71, 55, 0.12);
}

.note-icon-btn:hover {
  background: #fff;
}

.notes-group-title {
  color: #171717;
  font-size: 22px;
  font-weight: 850;
  margin: 0 0 12px;
}

#noteListContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-list-item {
  width: 100%;
  min-height: 120px;
  display: grid;
  gap: 8px;
  justify-items: start;
  text-align: left;
  background: #e1ded8;
  color: #1f2933;
  border-radius: 8px;
  padding: 18px 20px;
}

.note-list-item:hover,
.note-list-item.active {
  background: #d8d5cf;
}

.note-list-item strong {
  font-size: 20px;
}

.note-list-item span {
  color: #5d5d5d;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.note-list-item small {
  color: #777;
}

.notes-empty,
.note-workspace-empty {
  color: #8a8578;
  text-align: center;
  line-height: 1.6;
}

.notes-empty {
  margin: 28px 0 0;
  font-size: 14px;
}

.note-workspace-empty {
  display: grid;
  place-content: center;
  min-height: calc(100vh - 120px);
  gap: 6px;
}

.note-workspace-empty p {
  margin: 0;
  font-size: 18px;
}

.note-workspace-empty .muted {
  font-size: 14px;
}

.note-workspace {
  background: #fffefa;
  min-width: 0;
  padding: 22px clamp(20px, 5vw, 56px) 34px;
}

.note-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  color: #a3a3a3;
  font-size: 15px;
  margin-bottom: 16px;
}

.note-toolbar-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.note-delete-btn {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #e8c4c4;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.note-delete-btn:hover {
  background: #fff1f1;
}

.note-status {
  background: rgba(245, 241, 230, 0.84);
  border: 1px solid #e8dfca;
  border-radius: 999px;
  color: #7d6c45;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.note-title-input {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #242424;
  font-size: 30px;
  font-weight: 850;
  height: auto;
  margin-bottom: 10px;
  padding: 0;
}

.note-title-input:focus,
.note-editor:focus {
  outline: none;
}

.note-editor {
  width: 100%;
  min-height: calc(100vh - 220px);
  resize: none;
  border: 0;
  border-radius: 0;
  outline: none;
  padding: 0 0 24px;
  background: transparent;
  color: #2f2f2f;
  font: 20px/1.65 "Segoe UI", "Microsoft YaHei", sans-serif;
}

.note-title-input::placeholder,
.note-editor::placeholder {
  color: #b6b1a6;
}

.status-section,
.admin-section {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.admin-section h2 {
  margin: 0;
}

.status-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(320px, 1fr);
  gap: 16px;
}

.dashboard-hero,
.dashboard-metrics,
.dashboard-info {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  padding: 22px;
  align-items: center;
}

.dashboard-hero h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 44px);
}

.dashboard-ring {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, white 58%, transparent 59%),
    conic-gradient(#16a34a calc(var(--percent) * 1%), #dbe7fb 0);
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.dashboard-bar {
  grid-column: 1 / -1;
  height: 10px;
  background: #e8eef7;
  border-radius: 999px;
  overflow: hidden;
}

.dashboard-bar div {
  height: 100%;
  background: linear-gradient(90deg, #16a34a, #2563eb);
  border-radius: inherit;
}

.dashboard-split {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.metric-card {
  background: #f8fafc;
  border: 1px solid #e5eaf3;
  border-radius: 8px;
  padding: 16px;
  min-width: 0;
}

.metric-card span,
.dashboard-info span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.metric-card strong,
.dashboard-info strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.metric-card strong {
  font-size: 26px;
}

.metric-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.dashboard-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.dashboard-info div {
  min-width: 0;
  border-left: 3px solid #dbe7fb;
  padding-left: 12px;
}

.settings-form,
.user-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.settings-form label,
.user-email-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.user-email-field input {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.user-form button {
  min-width: 112px;
}

.list {
  display: grid;
}

.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.row:last-child {
  border-bottom: 0;
}

.name {
  font-weight: 800;
  word-break: break-word;
}

.meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.quota-actions {
  display: grid;
  grid-template-columns: minmax(96px, 120px) auto auto;
  gap: 8px;
  align-items: center;
}

.quota-input {
  min-width: 96px;
}

.secondary {
  background: #eef2ff;
  color: var(--brand);
}

.secondary:hover {
  background: #dbe4ff;
}

.code-field {
  display: grid;
  align-items: center;
  gap: 8px;
}

.code-field {
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  height: var(--login-control-height);
  padding: 3px;
}

.code-field input {
  border: 0;
  height: 100%;
  padding: 0 8px;
}

.code-field input:focus {
  outline: none;
}

.code-send {
  min-width: 74px;
  min-height: 0;
  height: 100%;
  padding: 0 12px;
  border-radius: 6px;
}

#loginForm > label > input {
  height: var(--login-control-height);
}

#loginForm > button[type="submit"] {
  margin-top: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}

.captcha-dialog {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  padding: 24px;
}

.captcha-dialog h2 {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.modal-close:hover {
  background: #dbe4ff;
}

.captcha-image-btn {
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.captcha-image-btn:hover {
  background: #f8fafc;
}

.captcha-image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 64px;
}

.danger {
  background: #fee2e2;
  color: var(--danger);
}

.danger:hover {
  background: #fecaca;
}

.check {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.empty {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .content {
    padding: 22px 18px 32px;
  }

  .topbar {
    align-items: stretch;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
  }

  .upload {
    justify-content: stretch;
  }

  .upload button,
  .user-form button,
  .settings-form button {
    width: 100%;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .settings-form,
  .user-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quota-actions {
    grid-template-columns: 1fr;
  }

  .quota-card-main {
    align-items: flex-start;
  }

  .quota-card h2 {
    font-size: 22px;
  }

  .quota-ring {
    width: 72px;
    height: 72px;
  }

  .quota-stats {
    grid-template-columns: 1fr;
  }

  .apple-notes {
    grid-template-columns: 1fr;
  }

  .notes-list-pane {
    border-right: 0;
    border-bottom: 1px solid #e3ded1;
  }

  .note-workspace {
    padding: 18px 20px 28px;
  }

  .note-editor {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  body.sidebar-collapsed .app {
    grid-template-columns: 1fr;
  }

  body.sidebar-collapsed .sidebar {
    padding: 12px 14px;
    align-items: stretch;
  }

  body.sidebar-collapsed .brand-block {
    visibility: visible;
    height: auto;
  }

  body.sidebar-collapsed .nav,
  body.sidebar-collapsed .ghost {
    width: auto;
    height: auto;
    min-height: 42px;
    padding: 9px 12px;
    font-size: inherit;
  }

  body.sidebar-collapsed .nav::before,
  body.sidebar-collapsed .nav-parent::before,
  body.sidebar-collapsed .ghost::before {
    content: none;
  }

  body.sidebar-collapsed .nav-parent span {
    display: inline;
  }

  .icon-btn {
    display: none;
  }

  body.login-mode .shell {
    min-height: 100svh;
    height: 100svh;
    padding: 16px;
  }

  .login-panel {
    width: 100%;
    max-height: calc(100svh - 32px);
    overflow: auto;
    padding: 24px;
  }

  .app {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: auto;
    padding: 12px 14px;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand-block {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    grid-column: 1 / -1;
  }

  .brand-block .eyebrow {
    margin: 0;
  }

  .brand-block h2 {
    font-size: 13px;
    max-width: min(52vw, 220px);
  }

  .sidebar nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .apple-notes {
    min-height: calc(100svh - 180px);
  }

  .notes-list-pane {
    padding: 18px 14px;
  }

  .notes-list-head {
    margin-bottom: 18px;
  }

  .notes-list-head h1 {
    font-size: 24px;
  }

  .note-list-item {
    min-height: 96px;
    padding: 14px 16px;
  }

  .note-title-input {
    font-size: 26px;
  }

  .note-editor {
    font-size: 18px;
    min-height: 320px;
  }

  .nav-group {
    display: flex;
    gap: 8px;
    position: relative;
  }

  .subnav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    padding: 8px;
    background: #111827;
    border: 1px solid #243044;
    border-radius: 8px;
    z-index: 20;
  }

  .sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .nav,
  .ghost {
    text-align: center;
    white-space: nowrap;
    padding: 9px 12px;
  }

  .ghost {
    margin-top: 0;
  }

  .content {
    padding: 18px 14px 28px;
  }

  .content h1 {
    font-size: 24px;
  }

  .user-form,
  .settings-form {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .row {
    grid-template-columns: 1fr;
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    width: 100%;
  }

  .actions button,
  .actions a.button,
  .quota-actions button {
    justify-content: center;
    width: 100%;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-ring {
    width: 96px;
    height: 96px;
  }

  .dashboard-metrics,
  .dashboard-info {
    grid-template-columns: 1fr;
  }

  .quota-card-main {
    display: grid;
  }
}

@media (max-width: 420px) {
  .login-panel {
    padding: 20px;
  }

  .sidebar {
    padding: 12px;
  }

  .content {
    padding-inline: 10px;
  }

  .actions {
    grid-template-columns: 1fr;
  }
}

