/* ── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:          #f4f5f7;
  --color-surface:     #ffffff;
  --color-border:      #dde1e7;
  --color-primary:     #2c5f8a;
  --color-primary-dk:  #1e4166;
  --color-text:        #1a1a2e;
  --color-text-muted:  #6b7280;
  --color-sidebar-bg:  #1e2d40;
  --color-sidebar-txt: #c8d6e5;
  --color-sidebar-sel: #2c5f8a;
  --color-topbar-bg:   #1e2d40;
  --color-topbar-txt:  #ffffff;
  --color-error:       #dc2626;
  --sidebar-width:     220px;
  --topbar-height:     52px;
  --content-topbar-h:  48px;
  --radius:            6px;
  --shadow:            0 1px 4px rgba(0,0,0,0.08);
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  height: 100vh;
  overflow: hidden;
}

/* ── Login ────────────────────────────────────────────────────────── */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: var(--color-bg);
}

.login-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.login-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.4;
}

#form-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.field-group input {
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}

.field-group input:focus {
  border-color: var(--color-primary);
}

.login-error {
  color: var(--color-error);
  font-size: 13px;
  text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--color-primary-dk); }

.btn-full { width: 100%; }

.btn-logout {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--color-topbar-txt);
  border-radius: var(--radius);
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-logout:hover { background: rgba(255,255,255,0.1); }

/* ── Main layout ──────────────────────────────────────────────────── */
.main-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Top bar */
.topbar {
  height: var(--topbar-height);
  background: var(--color-topbar-bg);
  color: var(--color-topbar-txt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 10;
}

.topbar-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

/* Body = sidebar + content */
.body-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: var(--color-sidebar-bg);
  flex-shrink: 0;
  overflow-y: auto;
  padding: 16px 0;
}

.sidebar-menu {
  list-style: none;
}

.menu-group-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding: 16px 16px 6px;
}

.menu-item {
  padding: 10px 16px;
  color: var(--color-sidebar-txt);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.12s;
  font-size: 14px;
}

.menu-item:hover {
  background: rgba(255,255,255,0.07);
}

.menu-item.active {
  background: var(--color-sidebar-sel);
  color: #fff;
  font-weight: 500;
}

.menu-item-child {
  padding-left: 28px;
}

/* Content area */
.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.content-topbar {
  height: var(--content-topbar-h);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.content-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.placeholder-text {
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── Topbar buttons ───────────────────────────────────────────────── */
.btn-topbar {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--color-topbar-txt);
  border-radius: var(--radius);
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-topbar:hover { background: rgba(255,255,255,0.1); }

.btn-topbar-exit {
  border-color: rgba(220,38,38,0.5);
  color: #fca5a5;
}

.btn-topbar-exit:hover { background: rgba(220,38,38,0.15); }

/* ── Content topbar actions ───────────────────────────────────────── */
.section-title {
  font-weight: 600;
  font-size: 15px;
  flex: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.topbar-actions .section-title {
  flex: 1;
}

.filter-input {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  width: 220px;
  transition: border-color 0.15s;
}

.filter-input:focus { border-color: var(--color-primary); }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius);
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-secondary:hover { background: var(--color-bg); }

.btn-danger {
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-danger:hover { background: #b91c1c; }

/* ── Data table ───────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table thead tr {
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-border);
}

.data-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.data-row {
  cursor: pointer;
  transition: background 0.1s;
}

.data-row:hover { background: #f0f4f8; }

.row-suspended {
  opacity: 0.45;
  font-style: italic;
}

/* ── Detail view ──────────────────────────────────────────────────── */
.detail-view {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.detail-value {
  font-size: 15px;
  color: var(--color-text);
}

/* ── Edit form ────────────────────────────────────────────────────── */
.edit-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

/* ── Danger zone ──────────────────────────────────────────────────── */
.danger-zone {
  margin-top: 16px;
  border: 1px solid #fca5a5;
  background: #fff5f5;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.danger-warning {
  font-size: 13px;
  color: #dc2626;
}

/* ── Error text ───────────────────────────────────────────────────── */
.error-text {
  color: var(--color-error);
  font-size: 14px;
}

/* ── Dialog ───────────────────────────────────────────────────────── */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.dialog-box {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 32px;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dialog-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ── User dropdown ────────────────────────────────────────────────── */
.user-menu-wrapper {
  position: relative;
}

.btn-user-menu {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--color-topbar-txt);
  border-radius: var(--radius);
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}

.btn-user-menu:hover { background: rgba(255,255,255,0.1); }

.user-menu-arrow { font-size: 11px; opacity: 0.7; }

.user-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  min-width: 200px;
  z-index: 200;
}

.dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.1s;
}

.dropdown-item:hover { background: var(--color-bg); }

.dropdown-item-danger { color: var(--color-error); }

.dropdown-divider {
  border-top: 1px solid var(--color-border);
  margin: 4px 0;
}

.checkmark {
  width: 14px;
  display: inline-block;
  visibility: hidden;
}

/* ── Select ───────────────────────────────────────────────────────── */
.edit-form select {
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.15s;
  width: 100%;
}

.edit-form select:focus { border-color: var(--color-primary); }

/* ── Suspended detail view ────────────────────────────────────────── */
.detail-suspended {
  border: 2px solid #dc2626;
  border-radius: var(--radius);
}

.row-suspended {
  border: 2px solid #dc2626;
  border-radius: var(--radius);
}

/* ── Topbar center (Mese di Competenza) ───────────────────────────── */
.topbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar-mese-1 {
  font-size: 15px;
  font-weight: 500;
  color: #dddddd;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topbar-mese-2 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffaf;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Dropdown select inside menu ──────────────────────────────────── */
.dropdown-label {
  font-size: 13px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.dropdown-select {
  flex: 1;
  padding: 4px 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
}

/* ── Professional detail grid ─────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
}

.detail-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.detail-cell-empty { visibility: hidden; }

.detail-value-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-btn {
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.phone-btn:hover { opacity: 1; }

.wa-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

/* ── Servizi del Mese ─────────────────────────────────────────────── */
.servizi-mese-section {
  margin-top: 28px;
}

.servizi-mese-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.servizi-mese-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.records-table {
  width: 100%;
}

.inline-input {
  width: 80px;
  padding: 4px 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
}

.inline-input:focus { border-color: var(--color-primary); }

.inline-select {
  padding: 4px 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--color-surface);
  outline: none;
  max-width: 200px;
}

.inline-select:focus { border-color: var(--color-primary); }

.btn-record-delete {
  background: transparent;
  border: none;
  color: var(--color-error);
  font-size: 16px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: var(--radius);
  transition: background 0.1s;
}

.btn-record-delete:hover { background: #fee2e2; }

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

/* ── Monthly status ───────────────────────────────────────────────── */
.status-fattura { color: #16a34a; font-weight: 500; }
.status-problemi { color: var(--color-error); font-weight: 500; }

.stato-mese-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.stato-mese-select {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
  min-width: 200px;
  transition: border-color 0.15s;
}

.stato-mese-select:focus { border-color: var(--color-primary); }

/* ── ProForma document ────────────────────────────────────────────── */
.proforma-doc {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 48px;
  font-size: 14px;
  line-height: 1.6;
}

.proforma-header {
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proforma-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.proforma-logo {
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.proforma-company {
  font-size: 20px;
  font-weight: 500;
  text-align: right;
  line-height: 1.6;
  color: var(--color-text);
}

.proforma-company strong { font-size: 24px; }

.proforma-professional { font-size: 15px; margin-top: 8px; }
.proforma-period { font-size: 14px; margin-top: 4px; }

.proforma-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.proforma-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.proforma-table td { padding: 8px 4px; }

.pf-label {
  width: 70%;
  color: var(--color-text);
}

.pf-value {
  width: 30%;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.pf-subtotal td { border-top: 1px solid var(--color-border); font-weight: 600; }
.pf-total td    { border-top: 2px solid var(--color-primary); font-weight: 700; color: var(--color-primary); }
.pf-deduction td { color: var(--color-error); }
.pf-net td      { border-top: 2px solid var(--color-text); font-weight: 700; font-size: 15px; }

.proforma-narrative {
  margin-bottom: 24px;
  line-height: 1.8;
  text-align: justify;
}

.proforma-riepilogo-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--color-text-muted);
}

.proforma-dichiarazioni {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.proforma-dichiarazioni ul {
  margin: 12px 0 12px 20px;
  line-height: 1.8;
}

.proforma-firma {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  font-size: 13px;
}

@media print {
  .topbar, .sidebar, .content-topbar { display: none !important; }
  .content-body { padding: 0 !important; overflow: visible !important; }
  .proforma-doc { border: none; box-shadow: none; padding: 20px; }
}

/* ── Import page ──────────────────────────────────────────────────── */
.import-wrapper {
  max-width: 760px;
}

.dropzone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--color-surface);
  margin-bottom: 24px;
}

.dropzone:hover, .dropzone-over {
  border-color: var(--color-primary);
  background: #f0f4f8;
}

.dropzone-icon { font-size: 40px; margin-bottom: 12px; }

.dropzone-text {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.import-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.import-preview-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
}

.import-format-badge {
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.import-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.import-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.import-names-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 200px;
  overflow-y: auto;
}

.import-name-new     { color: #d97706; font-size: 13px; }
.import-name-matched { color: #16a34a; font-size: 13px; }

.import-ok      { color: #16a34a; font-size: 13px; font-weight: 500; }
.import-warning { color: #d97706; font-size: 13px; }

.import-errors {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 12px;
  font-size: 13px;
  color: var(--color-error);
}

.import-errors ul { margin: 8px 0 0 16px; line-height: 1.8; }

.import-period { font-size: 14px; }

/* ── Missing data ─────────────────────────────────────────────────── */
.missing-data { color: var(--color-error); font-weight: 500; }

/* ── Adjustment section ───────────────────────────────────────────── */
.aggiustamento-section {
  margin-top: 20px;
}

.adjustment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adjustment-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.adjustment-add-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.adjustment-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.adj-value {
  font-weight: 600;
  font-size: 15px;
  min-width: 100px;
}

.adj-type {
  font-weight: 500;
  font-size: 14px;
  min-width: 140px;
}

.adj-credit { color: #16a34a; }
.adj-debit  { color: var(--color-error); }

.adj-note {
  font-size: 13px;
  color: var(--color-text-muted);
  flex: 1;
}

/* ── Table footer ─────────────────────────────────────────────────── */
.data-table tfoot tr {
  border-top: 2px solid var(--color-primary);
  background: var(--color-bg);
}

.data-table tfoot td {
  padding: 10px 16px;
  font-size: 14px;
}

/* ── Monthly status colors ────────────────────────────────────────── */
.status-daffare     { color: var(--color-text-muted); }
.status-incorso     { color: #d97706; font-weight: 500; }
.status-fatto       { color: #16a34a; font-weight: 500; }
.status-nonnecessario { color: var(--color-text-muted); font-style: italic; }

/* ── Lock banner ──────────────────────────────────────────────────── */
.lock-banner {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #92400e;
}

.lock-badge {
  background: #16a34a;
  color: #fff;
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Mese completato ──────────────────────────────────────────────── */
.mese-completato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  gap: 16px;
}

.mese-completato-icon {
  font-size: 64px;
  color: #16a34a;
}

.mese-completato-text {
  font-size: 28px;
  font-weight: 700;
  color: #16a34a;
}

/* ── Statistics ───────────────────────────────────────────────────── */
.stat-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.stat-filter-bar label { font-size: 13px; font-weight: 500; color: var(--color-text-muted); }

.stat-report { display: flex; flex-direction: column; gap: 28px; }

.stat-month-block { }

.stat-month-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-table th, .stat-table td {
  white-space: nowrap;
  font-size: 13px;
}

.stat-summary-row td {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
}

.row-dipendente { background: #f0f9ff; }

/* ── Chart ────────────────────────────────────────────────────────── */
.chart-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
}
