/* ===== Tokens ===== */
:root {
  --bg-page: #f4f6f9;
  --bg-card: #ffffff;
  --bg-muted: #f8fafc;
  --bg-hover: #fafbfc;

  --sidebar-bg: #1e293b;
  --sidebar-hover: #334155;
  --sidebar-text: #cbd5e1;
  --sidebar-divider: #334155;

  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-soft: rgba(59,130,246,0.1);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-strong: #cbd5e1;

  --success-bg: #ecfdf5;
  --success-text: #047857;
  --success-border: #a7f3d0;
  --warning-bg: #fffbeb;
  --warning-text: #b45309;
  --warning-border: #fde68a;
  --danger-bg: #fef2f2;
  --danger-text: #dc2626;
  --danger-border: #fecaca;
  --info-bg: #eff6ff;
  --info-text: #1d4ed8;
  --info-border: #bfdbfe;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== App layout ===== */
.app {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

/* ===== Sidebar ===== */
.sidebar {
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 0 6px;
}
.sidebar-brand-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: var(--accent);
}
.sidebar-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  color: var(--sidebar-text);
  font-size: 13px;
  transition: background 0.1s ease;
}
.sidebar-nav a:hover { background: var(--sidebar-hover); color: #fff; }
.sidebar-nav a.active { background: var(--sidebar-hover); color: #fff; }
.sidebar-nav i { font-size: 16px; }

.sidebar-footer {
  padding-top: 16px;
  border-top: 1px solid var(--sidebar-divider);
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px;
}
.user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}
.user-name { font-size: 13px; color: #fff; font-weight: 500; }
.logout-link { font-size: 11px; color: var(--sidebar-text); }
.logout-link:hover { color: #fff; text-decoration: underline; }

/* ===== Main content ===== */
.main {
  padding: 24px 32px 48px;
  max-width: 100%;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.page-header h1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.page-header .subtitle {
  color: var(--text-muted);
  font-size: 13px;
}
.page-header-actions { display: flex; gap: 8px; align-items: center; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb i { font-size: 13px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.1s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--bg-muted); border-color: var(--border-strong); }
.btn:active { transform: translateY(1px); }
.btn i { font-size: 15px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-danger {
  background: var(--bg-card);
  color: var(--danger-text);
  border-color: var(--danger-border);
}
.btn-danger:hover { background: var(--danger-bg); border-color: var(--danger-text); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-muted); }

.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-sm i { font-size: 13px; }

/* ===== Cards ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
}
.card-title { font-size: 14px; font-weight: 600; }
.card-body { padding: 18px; }
.card-body-flush { padding: 0; }

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  font-weight: 600;
}
.stat-value {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.stat-value.success { color: var(--success-text); }
.stat-value.warning { color: var(--warning-text); }
.stat-value.danger  { color: var(--danger-text); }

/* ===== Table ===== */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.table th {
  text-align: left;
  padding: 10px 18px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: var(--bg-hover); }
.table .col-actions {
  text-align: right;
  white-space: nowrap;
}
.table .col-actions a {
  color: var(--text-muted);
  margin-left: 12px;
  font-size: 12px;
}
.table .col-actions a:hover { color: var(--text-primary); }
.row-action-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 12px;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  vertical-align: middle;
}
.row-action-btn:hover { color: var(--text-primary); }
.row-action-btn i { font-size: 14px; }

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 12px;
  line-height: 1.4;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge-success { background: var(--success-bg); color: var(--success-text); }
.badge-warning { background: var(--warning-bg); color: var(--warning-text); }
.badge-danger  { background: var(--danger-bg);  color: var(--danger-text);  }
.badge-info    { background: var(--info-bg);    color: var(--info-text);    }
.badge-neutral { background: #f1f5f9; color: #475569; }

/* ===== Type ===== */
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ===== Form ===== */
.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
}
.form-section-header {
  padding: 12px 18px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-section-title {
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title i { color: var(--accent); font-size: 16px; }
.form-section-hint { font-size: 11px; color: var(--text-muted); }

.form-section-body {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.field { display: flex; flex-direction: column; gap: 5px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.field label .req { color: var(--danger-text); }
.field input,
.field select,
.field textarea {
  padding: 8px 11px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 0.1s ease, box-shadow 0.1s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input[readonly] { background: var(--bg-muted); color: var(--text-muted); }
.field .hint { font-size: 11px; color: var(--text-muted); }

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 0 0;
  margin-top: 10px;
  border-top: 1px solid var(--border-light);
}
.form-actions-right { display: flex; gap: 8px; }

/* ===== Timeline ===== */
.timeline { display: flex; flex-direction: column; }
.timeline-step {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  position: relative;
}
.timeline-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  position: relative;
  border: 1px solid transparent;
}
.timeline-step:not(:last-child) .timeline-icon::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 16px);
  background: var(--border);
  z-index: 0;
}
.timeline-icon.done    { background: var(--success-bg); color: var(--success-text); border-color: var(--success-border); }
.timeline-icon.running { background: var(--info-bg);    color: var(--info-text);    border-color: var(--info-border); }
.timeline-icon.failed  { background: var(--danger-bg);  color: var(--danger-text);  border-color: var(--danger-border); }
.timeline-icon.pending { background: #f1f5f9; color: #94a3b8; border-color: var(--border); }

.timeline-icon.running::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.timeline-content {
  flex: 1;
  padding-top: 4px;
}
.timeline-title { font-size: 13px; font-weight: 500; }
.timeline-title.muted { color: var(--text-muted); font-weight: 400; }
.timeline-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.timeline-detail { font-size: 11px; color: var(--text-secondary); margin-top: 3px; word-break: break-all; }
.timeline-detail.mono { font-family: ui-monospace, monospace; }
.timeline-detail.text-muted { color: var(--text-muted); }

/* ===== Config display ===== */
.config-section {
  margin-bottom: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.config-section-header {
  padding: 10px 16px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.config-section-header i { color: var(--text-muted); font-size: 15px; }

.config-table { width: 100%; font-size: 12px; border-collapse: collapse; }
.config-table tr td { padding: 7px 16px; border-bottom: 1px solid var(--border-light); vertical-align: top; }
.config-table tr:last-child td { border-bottom: none; }
.config-table tr td:first-child {
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
  width: 40%;
}
.config-table tr td:last-child {
  color: var(--text-primary);
  font-family: ui-monospace, monospace;
  word-break: break-all;
}
.config-table tr td.empty:last-child { color: #cbd5e1; font-style: italic; }

/* ===== Two col layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}

/* ===== Activity feed ===== */
.activity-list { display: flex; flex-direction: column; }
.activity-row {
  display: flex;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
}
.activity-row:last-child { border-bottom: none; }
.activity-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.activity-icon.success { background: var(--success-bg); color: var(--success-text); }
.activity-icon.info    { background: var(--info-bg);    color: var(--info-text); }
.activity-icon.danger  { background: var(--danger-bg);  color: var(--danger-text); }
.activity-icon.neutral { background: #f1f5f9; color: #475569; }
.activity-content { flex: 1; min-width: 0; }
.activity-title { font-size: 13px; color: var(--text-primary); }
.activity-title .site-tag {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  padding: 1px 6px;
  background: var(--info-bg);
  color: var(--info-text);
  border-radius: var(--radius-sm);
  margin: 0 2px;
}
.activity-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===== Login ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-page);
  padding: 20px;
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 30px;
  width: 100%;
  max-width: 360px;
}
.login-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.login-brand-logo { width: 30px; height: 30px; border-radius: 6px; background: var(--accent); }
.login-brand-name { font-size: 17px; font-weight: 600; }

.login-card h2 { font-size: 18px; margin-bottom: 4px; font-weight: 600; }
.login-card .subtitle { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; }

.login-error {
  background: var(--danger-bg);
  color: var(--danger-text);
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--danger-border);
}

.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-form .btn-primary { width: 100%; justify-content: center; padding: 10px; }
.login-hint {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Misc ===== */
.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
  font-size: 13px;
}
.empty-state i { font-size: 28px; margin-bottom: 8px; display: block; color: var(--border-strong); }

.error-banner {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger-text);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.error-banner i { font-size: 18px; flex-shrink: 0; }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.filter-bar a {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.filter-bar a:hover { background: var(--bg-muted); }
.filter-bar a.active { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }

.meta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  font-size: 13px;
}
.meta-row { display: flex; justify-content: space-between; padding: 6px 0; }
.meta-row .label { color: var(--text-muted); font-size: 12px; }
.meta-row .value { color: var(--text-primary); font-weight: 500; font-size: 12px; }
.meta-row .value.mono { font-family: ui-monospace, monospace; }

.divider { height: 1px; background: var(--border-light); margin: 10px 0; }

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 12px;
}
.section-title-row h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Live URL row (site detail page header) ===== */
.live-url-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--success-bg, #ecfdf5);
  border: 1px solid var(--success-border, #a7f3d0);
  border-radius: 6px;
  font-size: 13px;
}
.live-url-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.live-url-link:hover { text-decoration: underline; }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fade-in 0.15s ease-out;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-card {
  background: var(--bg-card, #fff);
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: slide-up 0.2s ease-out;
}
@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-icon-success {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success-bg, #d1fae5);
  color: var(--success-text, #047857);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.modal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-muted, #f3f4f6);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-mono, ui-monospace, 'SF Mono', Menlo, monospace);
  font-size: 14px;
  word-break: break-all;
  width: 100%;
  justify-content: center;
}
.modal-link:hover {
  background: var(--bg-card, #fff);
  border-color: var(--accent);
}

/* ===== Duration picker (expiry form) ===== */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.duration-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  cursor: pointer;
  background: var(--bg-card);
  transition: background 0.1s, border-color 0.1s;
}
.duration-opt:hover { background: var(--bg-muted); }
.duration-opt input[type="radio"] { accent-color: var(--accent); }
.duration-opt:has(input:checked) {
  background: var(--info-bg);
  border-color: var(--accent);
  color: var(--info-text);
  font-weight: 500;
}

/* ===== Flash banner ===== */
.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid;
}
.flash i { font-size: 17px; flex-shrink: 0; }
.flash-success { background: var(--success-bg); color: var(--success-text); border-color: var(--success-border); }
.flash-error   { background: var(--danger-bg);  color: var(--danger-text);  border-color: var(--danger-border); }
.flash-info    { background: var(--info-bg);    color: var(--info-text);    border-color: var(--info-border); }

/* ===== Computed preview box (form) ===== */
.computed-box {
  border-top: 1px solid var(--border-light);
  background: var(--bg-muted);
  padding: 12px 18px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.computed-box[data-empty="true"] { opacity: 0.55; }
.computed-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.computed-label {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.computed-label i { font-size: 14px; }
.computed-value {
  color: var(--text-primary);
  font-weight: 500;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ===== Defaults disclosure ===== */
.defaults-disclosure {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
}
.defaults-disclosure summary {
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  list-style: none;
  user-select: none;
}
.defaults-disclosure summary::-webkit-details-marker { display: none; }
.defaults-disclosure summary:hover { background: var(--bg-muted); }
.defaults-disclosure summary .chevron {
  font-size: 14px;
  transition: transform 0.15s ease;
  color: var(--text-muted);
}
.defaults-disclosure[open] summary .chevron { transform: rotate(90deg); }
.defaults-body {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border-light);
}

/* ===== Responsive (basic) ===== */
@media (max-width: 900px) {
  .app { grid-template-columns: 1fr; }
  .sidebar {
    display: flex;
    flex-direction: row;
    padding: 12px 16px;
    align-items: center;
    gap: 12px;
  }
  .sidebar-brand { margin-bottom: 0; }
  .sidebar-nav { flex-direction: row; flex: 0; gap: 4px; }
  .sidebar-nav a { padding: 6px 10px; font-size: 12px; }
  .sidebar-footer { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .form-section-body { grid-template-columns: 1fr; }
  .main { padding: 16px; }
}
