/* ============================================================
   Parker Food – Styles
   Minimal aesthetic: white, black, restrained, lots of whitespace
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-muted: #FAFAFA;
  --text: #0A0A0A;
  --text-secondary: #525252;
  --text-tertiary: #8A8A8A;
  --border: #EAEAEA;
  --border-strong: #D4D4D4;
  --accent: #0A0A0A;
  --accent-hover: #1F1F1F;
  --danger: #B91C1C;
  --danger-soft: #FEF2F2;
  --focus-ring: rgba(10, 10, 10, 0.12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[x-cloak] { display: none !important; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

.muted { color: var(--text-secondary); }
.small { font-size: 13px; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  font-weight: 500;
  margin: 0 0 4px;
}
.error { color: var(--danger); font-size: 13px; margin-top: 8px; }
.hint { margin: 8px 0 0; }
.only-print { display: none; }

/* ----- Buttons ----- */
button {
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  border-radius: var(--radius);
  padding: 9px 16px;
  transition: all 100ms ease;
  font-weight: 500;
  letter-spacing: -0.005em;
}
button:disabled { opacity: 0.4; cursor: not-allowed; }

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

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover:not(:disabled) { background: var(--surface-muted); border-color: var(--text); }
.btn-ghost.danger { color: var(--danger); border-color: var(--border); }
.btn-ghost.danger:hover:not(:disabled) { background: var(--danger-soft); border-color: var(--danger); }

.btn-icon {
  padding: 4px 8px;
  font-size: 13px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  line-height: 1;
}
.btn-icon:hover:not(:disabled) { border-color: var(--text); color: var(--text); background: var(--surface-muted); }

/* ----- Login ----- */
.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 400px;
}
.login-card .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.login-card .brand-row svg { width: 32px; height: 22px; }
.login-card h1 { font-size: 24px; margin: 0; letter-spacing: -0.02em; }
.login-card p { margin-bottom: 28px; color: var(--text-secondary); }
.login-card form { display: flex; flex-direction: column; gap: 16px; }

/* ----- Forms ----- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span:first-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.field > span em { color: var(--text); font-style: normal; }
input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color 100ms ease, box-shadow 100ms ease;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
textarea { resize: vertical; min-height: 80px; font-family: inherit; }
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-secondary) 50%), linear-gradient(135deg, var(--text-secondary) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
  padding-right: 32px;
}

.amount-row { display: grid; grid-template-columns: 1fr 90px; gap: 8px; }

.range-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.range-label { flex-shrink: 0; }
.range-input {
  width: 80px !important;
  padding: 6px 8px !important;
  font-size: 13px !important;
}
.range-btn {
  padding: 6px 10px !important;
  font-size: 12px !important;
  white-space: nowrap;
}
.range-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.check { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.check input { width: auto; accent-color: var(--accent); }
.meal-checks { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 6px 0 0; }

/* ----- Topbar ----- */
.app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand svg { width: 28px; height: 20px; flex-shrink: 0; }
.brand h1 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1;
}
.tabs {
  display: flex;
  gap: 2px;
  margin-left: 40px;
}
.tabs button {
  background: transparent;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}
.tabs button:hover { color: var(--text); background: var(--surface-muted); }
.tabs button.active {
  color: var(--text);
  background: var(--surface-muted);
}
.topbar-right { margin-left: auto; }

/* ----- View headers ----- */
.view-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 40px;
}
.view-head h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.view-head-actions { display: flex; gap: 8px; }

/* ----- Plan grid ----- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.meal-card {
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.meal-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.meal-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ingredient-list { list-style: none; margin: 0; padding: 0; }
.ingredient-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
}
.ing-name {
  font-weight: 500;
  font-size: 14px;
}
.ing-amount {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}
.empty { padding: 8px 0; color: var(--text-tertiary); }

.plan-meta {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-value {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

/* ----- Ingredient cards ----- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.ing-card {
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ing-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.ing-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ing-full {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: -8px;
  line-height: 1.4;
}
.ing-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin: 0; }
.ing-meta > div { display: flex; flex-direction: column; }
.ing-meta dt {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-bottom: 2px;
}
.ing-meta dd { margin: 0; font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.ing-notes {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 12px;
  background: var(--surface-muted);
  border-radius: var(--radius);
  line-height: 1.5;
}
.mix-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--surface-muted);
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ----- Vormix-Vorbereitung ----- */
.vormix-section { margin-top: 56px; }
.vormix-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.vormix-section h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.prep-input {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.prep-days-input {
  width: 64px !important;
  padding: 6px 10px !important;
  font-size: 14px !important;
  text-align: center;
}
.mix-group-box {
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mix-group-box:last-child { margin-bottom: 0; }
.mix-group-box h4 {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.mix-table { padding: 0; }
.mix-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  font-size: 14px;
}
.mix-row:last-child { border-bottom: none; }
.mix-header {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  background: var(--surface);
}
.mix-total {
  font-weight: 600;
  background: var(--surface-muted);
  border-top: 1px solid var(--border-strong);
}
.ing-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
.reorder { display: flex; gap: 2px; }

/* ----- Meals view ----- */
.meal-list {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  border-top: 1px solid var(--border);
}
.meal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.meal-name {
  flex: 1;
  font-size: 15px;
  border: 1px solid transparent;
  background: transparent;
  padding: 8px 10px;
}
.meal-name:hover { border-color: var(--border); background: var(--surface-muted); }
.meal-name:focus { background: var(--surface); }

/* ----- Modal ----- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 100;
}
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-head h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.modal-head .btn-icon { font-size: 22px; padding: 4px 12px; }
.modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.modal-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  background: var(--surface-muted);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }

.conversion-box {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.calculator { padding-top: 14px; border-top: 1px solid var(--border); }
.calc-row { display: flex; align-items: end; gap: 14px; }
.calc-row > div { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.calc-row label { font-size: 12px; color: var(--text-secondary); }
.calc-arrow { font-size: 16px; color: var(--text-tertiary); padding-bottom: 12px; }

/* ----- Toast ----- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
}
.toast.error { background: var(--danger); }

/* ----- Responsive ----- */
@media (max-width: 720px) {
  .app { padding: 0 16px 48px; }
  .topbar { flex-wrap: wrap; gap: 12px; }
  .tabs { order: 3; margin-left: 0; width: 100%; overflow-x: auto; }
  .topbar-right { margin-left: auto; }
  .view-head { flex-direction: column; align-items: stretch; }
  .view-head h2 { font-size: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2, .span-3 { grid-column: auto; }
  .conversion-grid { grid-template-columns: 1fr; }
  .ing-meta { grid-template-columns: 1fr; }
}

/* ============================================================
   Reise-Ansicht
   ============================================================ */
.trip-config, .shopping-config {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.config-grid + .config-grid { margin-top: 24px; }

.trip-section { margin-bottom: 56px; }
.trip-section:last-child { margin-bottom: 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.section-head h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* Packing list */
.packing-table, .shopping-table {
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.packing-header, .shopping-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 16px;
  padding: 12px 16px;
  background: var(--surface-muted);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  text-transform: none;
  color: var(--text-tertiary);
  font-weight: 500;
}
.packing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.packing-row.total {
  background: var(--surface-muted);
  font-weight: 600;
}
.shopping-header {
  grid-template-columns: 2fr 0.9fr 1fr 1.4fr 1fr 1.4fr;
}
.shopping-row {
  display: grid;
  grid-template-columns: 2fr 0.9fr 1fr 1.4fr 1fr 1.4fr;
  gap: 16px;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.shopping-row.total {
  background: var(--surface-muted);
  font-weight: 600;
}

/* Trip days */
.trip-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.trip-day {
  padding: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trip-day-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.trip-day-head h4 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.day-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  background: var(--text);
  color: #FFFFFF;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.trip-day-meals { display: flex; flex-direction: column; gap: 14px; }
.trip-meal h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.trip-meal .ingredient-list li { padding: 4px 0; font-size: 13px; }
.day-skipped { padding: 8px 0; }

.redistributed {
  display: inline-block;
  margin-left: 4px;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  cursor: help;
}
.redistributed-hint { margin-top: 16px; }

/* ============================================================
   Druckansicht – A4 quer, sehr ruhig
   ============================================================ */
@media print {
  @page {
    size: A4 landscape;
    margin: 14mm;
  }
  body { background: #FFFFFF; color: #000000; font-size: 10.5pt; }
  .no-print { display: none !important; }
  .only-print { display: block !important; }
  .app { padding: 0; max-width: none; }

  .print-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12mm;
    padding-bottom: 8mm;
    margin-bottom: 12mm;
    border-bottom: 1px solid #000;
  }
  .print-head .print-bowl { width: 30mm; height: auto; display: block; }
  .print-head .print-title { display: flex; flex-direction: column; gap: 2mm; }
  .print-head h2 {
    font-size: 22pt;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 1;
  }
  .print-head .print-sub {
    font-size: 9pt;
    color: #555;
    letter-spacing: 0.02em;
  }
  .print-head .print-date {
    font-size: 9pt;
    color: #555;
    text-align: right;
  }

  .plan-grid {
    border: 1px solid #000;
    border-left: 1px solid #000;
    grid-template-columns: repeat(auto-fit, minmax(50mm, 1fr));
  }
  .meal-card {
    background: #FFFFFF;
    border-right: 1px solid #000;
    border-bottom: none;
    padding: 6mm;
    page-break-inside: avoid;
  }
  .meal-card:last-child { border-right: none; }
  .meal-card header {
    border-bottom: 1px solid #000;
    padding-bottom: 3mm;
    margin-bottom: 3mm;
  }
  .meal-card h3 {
    color: #000;
    font-size: 12pt;
    font-weight: 600;
  }
  .ingredient-list li {
    padding: 1.5mm 0;
    border: none;
  }
  .ing-name, .ing-amount { color: #000; font-size: 10pt; }
  .plan-meta { display: none; }
  .mix-badge { display: none; }

  /* Vormix-Sektion mit Seitenumbruch */
  .vormix-section {
    page-break-before: always;
    margin-top: 0;
  }
  .vormix-section .section-head { border-bottom: 1px solid #000; }
  .mix-group-box { border: 1px solid #000; margin-bottom: 6mm; page-break-inside: avoid; }
  .mix-group-box h4 { background: #F0F0F0; border-bottom: 1px solid #000; padding: 2mm 4mm; }
  .mix-row { padding: 1.5mm 4mm; border-bottom: 1px solid #999; }
  .mix-header { background: #F8F8F8; }
  .mix-total { background: #F0F0F0; border-top: 1px solid #000; }

  /* Trip print */
  .view-trip .trip-config,
  .view-shopping .shopping-config,
  .redistributed-hint { display: none; }
  .trip-section { margin-bottom: 8mm; }
  .section-head { padding-bottom: 2mm; margin-bottom: 4mm; border-bottom: 1px solid #000; }
  .section-head h3 { font-size: 13pt; }
  .packing-table, .shopping-table { border: 1px solid #000; border-left: 1px solid #000; }
  .packing-header, .shopping-header { background: #F0F0F0; color: #000; border-right: none; border-bottom: 1px solid #000; padding: 2mm 3mm; }
  .packing-row, .shopping-row { padding: 2mm 3mm; border-right: none; border-bottom: 1px solid #999; }
  .packing-row.total, .shopping-row.total { background: #F0F0F0; border-top: 1px solid #000; }
  .trip-days { border: 1px solid #000; }
  .trip-day { padding: 4mm; border-right: 1px solid #000; border-bottom: none; page-break-inside: avoid; }
  .trip-day:last-child { border-right: none; }
  .trip-day-head { border-bottom: 1px solid #000; padding-bottom: 1.5mm; margin-bottom: 1.5mm; }
  .trip-day-head h4 { font-size: 11pt; }
  .day-tag { background: #000; color: #FFFFFF; font-size: 8pt; padding: 1px 4px; }
  .trip-meal h5 { font-size: 9pt; }
  .redistributed { color: #555; }
}

/* ----- Responsive: Reise / Einkauf ----- */
@media (max-width: 720px) {
  .config-grid { grid-template-columns: 1fr; }
  .packing-header, .packing-row { grid-template-columns: 2fr 1fr; gap: 8px; font-size: 13px; }
  .packing-header > *:nth-child(n+3), .packing-row > *:nth-child(n+3) { grid-column: span 2; padding-left: 0; color: var(--text-secondary); }
  .shopping-header, .shopping-row { grid-template-columns: 1fr 1fr; gap: 8px; font-size: 13px; }
}
