:root {
  --brand-navy:       #1b2d7a;
  --brand-navy-deep:  #14215c;
  --brand-navy-light: #233791;
  --brand:            #1e3a8a;
  --brand-soft:       #eef2fb;
  --brand-soft-2:     #dde5f5;

  --bg:        #f4f6fb;
  --surface:   #ffffff;
  --surface-2: #fafbfd;
  --surface-3: #f1f4fa;
  --border:    #e1e6ef;
  --border-strong: #c9d1e0;

  --ink:    #0f172a;
  --ink-2:  #475569;
  --ink-3:  #8a93a6;
  --on-dark:      #ffffff;
  --on-dark-soft: rgba(255,255,255,.78);
  --on-dark-mute: rgba(255,255,255,.55);

  --ok:        #047857;
  --ok-soft:   #ecfdf5;
  --warn:      #b45309;
  --warn-soft: #fffbeb;
  --info:      #0e7490;
  --info-soft: #ecfeff;
  --danger:    #b91c1c;
  --danger-soft:#fef2f2;

  --sev-crit: #991b1b;
  --sev-high: #c2410c;
  --sev-med:  #a16207;
  --sev-low:  #4b5563;

  --radius:    8px;
  --radius-sm: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow:    0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 12px -2px rgba(15,23,42,.08), 0 2px 6px -2px rgba(15,23,42,.05);
  --shadow-lg: 0 25px 50px -12px rgba(15,23,42,.28);
  --shadow-card: 0 1px 2px rgba(27,45,122,.04), 0 4px 16px -4px rgba(27,45,122,.08);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.015em; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: var(--brand-navy);
  color: var(--on-dark);
  position: sticky; top: 0; z-index: 30;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-navy);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.03em;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.brand-title {
  color: var(--on-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.topbar-account {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

.user-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  color: var(--on-dark);
}
.user-name { font-weight: 500; }
.user-role-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
  color: var(--on-dark);
  letter-spacing: 0.06em;
}
.user-role-badge.is-admin {
  background: #fff;
  color: var(--brand-navy);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s, box-shadow .12s, transform .05s;
}
.btn:hover { background: var(--surface-3); border-color: var(--ink-3); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid rgba(30,58,138,.25); outline-offset: 1px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(27,45,122,.2);
}
.btn-primary:hover { background: var(--brand-navy-deep); border-color: var(--brand-navy-deep); }

.btn-ghost { background: transparent; border-color: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: var(--brand-soft); border-color: transparent; color: var(--brand-navy); }

.btn-danger { background: var(--surface); border-color: var(--danger); color: var(--danger); }
.btn-danger:hover { background: var(--danger-soft); }

/* Outlined-white: para el botón "Salir" sobre el topbar oscuro */
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-weight: 500;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

.btn-sm { padding: 6px 12px; font-size: 12px; }

.icon-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.icon-btn:hover { background: var(--surface-3); border-color: var(--border); }

/* ============================================================
   PAGE HEADER (between topbar and content)
   ============================================================ */
.page-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 28px 28px 0;
}
.page-header-left { min-width: 0; }
.page-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.page-title .page-icon {
  font-size: 22px;
  line-height: 1;
}
.page-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--ink-2);
  max-width: 60ch;
}
.page-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px 28px 0;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand-navy);
  opacity: 0;
  transition: opacity .15s;
}
.stat.accent-warn::before { background: var(--warn); opacity: 1; }
.stat.accent-info::before { background: var(--info); opacity: 1; }
.stat.accent-ok::before   { background: var(--ok);   opacity: 1; }
.stat:first-child::before { background: var(--brand-navy); opacity: 1; }

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-sub { font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.stat.accent-warn .stat-value { color: var(--warn); }
.stat.accent-info .stat-value { color: var(--info); }
.stat.accent-ok   .stat-value { color: var(--ok); }

/* ============================================================
   FILTERS
   ============================================================ */
.filters {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  padding: 22px 28px 18px;
  position: sticky; top: 61px; z-index: 10;
  background: var(--bg);
}
.filter-search {
  flex: 1;
  min-width: 280px;
  position: relative;
}
.filter-search::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%);
  background: var(--ink-3);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21l-4.35-4.35M11 19a8 8 0 100-16 8 8 0 000 16z' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21l-4.35-4.35M11 19a8 8 0 100-16 8 8 0 000 16z' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}
.filter-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13px;
  transition: border-color .12s, box-shadow .12s;
}
.filters select {
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13px;
  min-width: 170px;
  cursor: pointer;
  transition: border-color .12s, box-shadow .12s;
}
.filter-search input:focus,
.filters select:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(27,45,122,.12);
}

/* ============================================================
   RESULTS / TABLE
   ============================================================ */
.results { padding: 0 28px 28px; }
.results-meta {
  font-size: 11px;
  color: var(--ink-3);
  padding: 4px 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
table.incidents { width: 100%; border-collapse: collapse; }
.incidents thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-3);
  padding: 12px 16px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.incidents tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 13px;
}
.incidents tbody tr:last-child td { border-bottom: 0; }
.incidents tbody tr { cursor: pointer; transition: background .08s; }
.incidents tbody tr:hover { background: var(--brand-soft); }
.incidents .num { text-align: right; }
.incidents .mono { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.incidents .ticket-stack { display: flex; flex-direction: column; gap: 2px; }
.incidents .actions-col { width: 1px; }
.incidents .row-title { font-weight: 600; color: var(--ink); }
.incidents .row-service { color: var(--ink-3); font-size: 12px; margin-top: 3px; }

.empty-state {
  padding: 70px 20px; text-align: center; color: var(--ink-3);
}
.empty-state strong { display: block; color: var(--ink-2); font-weight: 600; margin-bottom: 6px; font-size: 14px; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
  white-space: nowrap;
}
.pill.dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.pill-status-abierto     { color: var(--warn); background: var(--warn-soft); border-color: #fde68a; }
.pill-status-en_progreso { color: var(--info); background: var(--info-soft); border-color: #a5f3fc; }
.pill-status-resuelto    { color: var(--ok);   background: var(--ok-soft);   border-color: #a7f3d0; }
.pill-type {
  color: var(--brand-navy);
  background: var(--brand-soft);
  border-color: var(--brand-soft-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10px;
}
.pill-admin    { color: var(--brand-navy); background: var(--brand-soft); border-color: var(--brand-soft-2); }
.pill-active   { color: var(--ok);    background: var(--ok-soft);    border-color: #a7f3d0; }
.pill-inactive { color: var(--ink-3); background: var(--surface-3);  border-color: var(--border); }

.sev-badge {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}
.sev-critica { background: var(--sev-crit); box-shadow: 0 0 0 3px rgba(153,27,27,.15); }
.sev-alta    { background: var(--sev-high); }
.sev-media   { background: var(--sev-med); }
.sev-baja    { background: var(--sev-low); }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 20px 0 0;
  font-size: 12px;
  color: var(--ink-2);
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 50; pointer-events: none; }
.drawer[aria-hidden="false"] { pointer-events: auto; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.5);
  opacity: 0; transition: opacity .2s;
}
.drawer[aria-hidden="false"] .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(640px, 100vw);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.drawer-panel-sm { width: min(500px, 100vw); }
.drawer[aria-hidden="false"] .drawer-panel { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.drawer-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-navy);
}

/* ============================================================
   FORM
   ============================================================ */
.form {
  flex: 1; overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px 24px;
  align-content: start;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13px;
  transition: border-color .12s, box-shadow .12s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(27,45,122,.12);
}
.field input:disabled { background: var(--surface-3); color: var(--ink-2); cursor: not-allowed; }
.field textarea { resize: vertical; min-height: 70px; font-family: var(--font-sans); }
.field.readonly output {
  padding: 10px 12px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-3);
  color: var(--ink-2);
  font-size: 13px;
}
.field small { font-size: 11px; color: var(--ink-3); }
.field em { font-style: normal; color: var(--ink-3); font-weight: 400; text-transform: none; letter-spacing: 0; }
.mono { font-family: var(--font-mono); }

.audit-line {
  font-size: 11px;
  color: var(--ink-3);
  padding: 10px 12px;
  background: var(--brand-soft);
  border-radius: var(--radius);
  border: 1px solid var(--brand-soft-2);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex; gap: 10px; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.form-actions .spacer { flex: 1; }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.modal[aria-hidden="false"] { pointer-events: auto; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.5);
  opacity: 0; transition: opacity .18s;
}
.modal[aria-hidden="false"] .modal-backdrop { opacity: 1; }
.modal-panel {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -45%); opacity: 0;
  width: min(500px, 92vw);
  max-height: 82vh;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transition: transform .2s, opacity .2s;
  overflow: hidden;
}
.modal-panel-lg { width: min(800px, 94vw); max-height: 85vh; }
.modal[aria-hidden="false"] .modal-panel { transform: translate(-50%, -50%); opacity: 1; }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.modal-header h2 { font-size: 16px; font-weight: 600; color: var(--brand-navy); }
.modal-body { padding: 20px 22px; overflow-y: auto; }

.provider-form { display: flex; gap: 8px; margin-bottom: 16px; }
.provider-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 13px;
}
.provider-form input:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(27,45,122,.12);
}
.provider-list { list-style: none; margin: 0; padding: 0; }
.provider-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.provider-list li:last-child { border-bottom: 0; }
.provider-list .count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-right: 12px;
}
.provider-list button.delete {
  background: transparent;
  border: 0;
  color: var(--ink-3);
  cursor: pointer;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}
.provider-list button.delete:hover { color: var(--danger); background: var(--danger-soft); }

/* Users table */
.users-header { margin-bottom: 16px; display: flex; justify-content: flex-end; }
.users-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.users-table thead th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-3);
  padding: 10px 12px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
}
.users-table tbody td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.users-table tbody tr { cursor: pointer; }
.users-table tbody tr:hover { background: var(--brand-soft); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 80;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--danger); }

/* ============================================================
   AUTH PAGES (login / setup)
   ============================================================ */
.auth-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.auth-body::before {
  content: "";
  position: absolute;
  top: -20%; right: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(35,55,145,.4) 0%, transparent 70%);
  pointer-events: none;
}
.auth-body::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(20,33,92,.5) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.auth-card-header {
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  padding: 32px 32px 26px;
  text-align: center;
  color: var(--on-dark);
}
.auth-pill {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 56px; height: 26px;
  padding: 0 12px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-family: var(--font-mono);
}
.auth-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.auth-card-subtitle {
  margin-top: 6px;
  font-size: 12px;
  color: var(--on-dark-soft);
  letter-spacing: 0.02em;
}
.auth-card-body { padding: 28px 32px 32px; }

.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-error {
  background: var(--danger-soft);
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  border: 1px solid #fecaca;
}
.auth-intro {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 8px;
}
.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form { grid-template-columns: 1fr; }
  .topbar { padding: 10px 16px; }
  .page-header { padding: 22px 16px 0; }
  .stats, .filters, .results { padding-left: 16px; padding-right: 16px; }
  .incidents thead { display: none; }
  .incidents tbody td { display: block; padding: 6px 16px; border-bottom: 0; }
  .incidents tbody tr { display: block; border-bottom: 1px solid var(--border); padding: 10px 0; }
  .users-table { font-size: 12px; }
}
@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .auth-card-header, .auth-card-body { padding-left: 24px; padding-right: 24px; }
}
