/* =============================================================================
   TALLYO — Design System
   Professional, minimal finance-app aesthetic. Light theme by default, with a
   fully polished dark theme available. All colors/spacing are CSS variables
   ("design tokens") so the whole look can be changed from one place.
============================================================================= */

:root {
  /* ---- Brand ---- */
  --brand-red: #E11D2E;
  --brand-red-dark: #B8121F;
  --brand-amber: #F5A623;

  /* ---- Light theme tokens (default) ---- */
  --bg: #F5F6F8;
  --surface: #FFFFFF;
  --surface-alt: #FAFAFB;
  --border: #E7E8EC;
  --border-strong: #D6D8DE;
  --text: #16181D;
  --text-muted: #6B7280;
  --text-faint: #9AA0AC;

  --primary: var(--brand-red);
  --primary-dark: var(--brand-red-dark);
  --primary-soft: rgba(225, 29, 46, 0.10);
  --accent: var(--brand-amber);
  --accent-soft: rgba(245, 166, 35, 0.14);

  --success: #16A34A;
  --success-soft: rgba(22, 163, 74, 0.12);
  --warning: #F59E0B;
  --warning-soft: rgba(245, 158, 11, 0.14);
  --danger: #DC2626;
  --danger-soft: rgba(220, 38, 38, 0.12);
  --info: #2563EB;
  --info-soft: rgba(37, 99, 235, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 18, 21, 0.04);
  --shadow-md: 0 4px 16px rgba(16, 18, 21, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 18, 21, 0.10);

  --sidebar-w: 248px;
  --topbar-h: 68px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

[data-theme="dark"] {
  --bg: #12131A;
  --surface: #1B1D26;
  --surface-alt: #20222D;
  --border: #2B2E3A;
  --border-strong: #383B4A;
  --text: #F1F2F5;
  --text-muted: #A0A4B2;
  --text-faint: #6C7080;

  --primary-soft: rgba(225, 29, 46, 0.18);
  --accent-soft: rgba(245, 166, 35, 0.18);
  --success-soft: rgba(22, 163, 74, 0.18);
  --warning-soft: rgba(245, 158, 11, 0.2);
  --danger-soft: rgba(220, 38, 38, 0.2);
  --info-soft: rgba(37, 99, 235, 0.2);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; font-size: 14px; }
::selection { background: var(--primary-soft); }

/* ---- Scrollbars ---- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

/* =============================================================================
   LAYOUT
============================================================================= */
#app-root { min-height: 100%; }

.app-shell { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 40;
  transition: transform .25s ease;
}
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 22px 22px 18px; }
.sidebar-brand .brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-amber));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.sidebar-brand .brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.2px; }
.sidebar-brand .brand-tag { font-size: 11px; color: var(--text-faint); display: block; margin-top: -2px; }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 6px 14px; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-weight: 600; font-size: 13.5px;
  cursor: pointer; margin-bottom: 2px; transition: background .15s, color .15s;
}
.nav-item i { width: 18px; text-align: center; font-size: 15px; }
.nav-item:hover { background: var(--surface-alt); color: var(--text); }
.nav-item.active { background: var(--primary-soft); color: var(--primary); }

.sidebar-footer { padding: 14px; border-top: 1px solid var(--border); }
.user-chip { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: var(--radius-sm); cursor: pointer; }
.user-chip:hover { background: var(--surface-alt); }
.user-avatar {
  width: 34px; height: 34px; border-radius: var(--radius-full);
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.user-meta { min-width: 0; flex: 1; }
.user-name { font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-email { font-size: 11.5px; color: var(--text-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-area { flex: 1; margin-left: var(--sidebar-w); min-width: 0; display: flex; flex-direction: column; }

.topbar {
  height: var(--topbar-h); flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 28px; background: var(--surface); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 30;
}
.topbar-title { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }

.period-select {
  display: flex; align-items: center; gap: 6px; background: var(--surface-alt);
  border: 1px solid var(--border); border-radius: var(--radius-full); padding: 6px 6px 6px 14px;
}
.period-select select { border: none; background: transparent; color: var(--text); font-weight: 600; outline: none; }

.page-content { padding: 26px 28px 60px; flex: 1; }
.page-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-heading { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }
.page-subheading { color: var(--text-muted); font-size: 13.5px; margin-top: 4px; }

/* =============================================================================
   GRID / CARD
============================================================================= */
.grid { display: grid; gap: 18px; }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.col-span-2 { grid-column: span 2; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; }
.card-title { font-size: 14.5px; font-weight: 700; }
.card-subtitle { font-size: 12px; color: var(--text-faint); margin-top: 2px; }

.stat-card { display: flex; flex-direction: column; gap: 10px; }
.stat-icon { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.stat-label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.stat-value { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.stat-delta { font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.stat-delta.up { color: var(--success); }
.stat-delta.down { color: var(--danger); }

/* =============================================================================
   BUTTONS
============================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 700; font-size: 13.5px;
  border: 1px solid transparent; cursor: pointer; transition: filter .15s, background .15s, transform .05s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary { background: var(--surface-alt); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--surface-alt); }
.btn-danger { background: var(--danger-soft); color: var(--danger); }
.btn-danger:hover { filter: brightness(0.97); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--surface-alt); color: var(--text); }
.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.fab-add {
  position: fixed; right: 28px; bottom: 28px; z-index: 50;
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--primary); color: #fff; display: none; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--shadow-lg); border: none; cursor: pointer;
}

.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =============================================================================
   FORMS
============================================================================= */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label.field-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; }
.input, select.input, textarea.input {
  width: 100%; padding: 10px 13px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); outline: none; transition: border-color .15s, box-shadow .15s;
}
.input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
textarea.input { resize: vertical; min-height: 70px; }
.input-error { border-color: var(--danger) !important; }
.field-error { color: var(--danger); font-size: 11.5px; margin-top: 5px; font-weight: 600; }
.field-hint { color: var(--text-faint); font-size: 11.5px; margin-top: 5px; }

.amount-input-wrap { position: relative; }
.amount-input-wrap .currency-prefix {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-faint); font-weight: 700;
}
.amount-input-wrap input { padding-left: 30px; }

.segmented { display: flex; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 3px; }
.segmented button {
  flex: 1; padding: 8px 12px; border: none; background: transparent; border-radius: 7px; cursor: pointer;
  font-weight: 700; font-size: 13px; color: var(--text-muted);
}
.segmented button.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.segmented button.active.type-income { color: var(--success); }
.segmented button.active.type-expense { color: var(--danger); }

.checkbox-row { display: flex; align-items: center; gap: 8px; }

/* =============================================================================
   TABLES / LISTS
============================================================================= */
.list { display: flex; flex-direction: column; }
.list-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--border);
}
.list-item:last-child { border-bottom: none; }
.list-icon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.list-main { flex: 1; min-width: 0; }
.list-title { font-weight: 700; font-size: 13.5px; }
.list-sub { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
.list-amount { font-weight: 800; font-size: 14px; white-space: nowrap; }
.list-amount.income { color: var(--success); }
.list-amount.expense { color: var(--text); }
.list-actions { display: flex; gap: 4px; opacity: 0; transition: opacity .15s; }
.list-item:hover .list-actions { opacity: 1; }

.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.data-table th {
  text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--text-faint); padding: 10px 12px; border-bottom: 1px solid var(--border); font-weight: 700;
}
table.data-table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tbody tr:hover { background: var(--surface-alt); }

/* =============================================================================
   BADGES / PROGRESS
============================================================================= */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-warning { background: var(--warning-soft); color: var(--warning); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-muted { background: var(--surface-alt); color: var(--text-muted); border: 1px solid var(--border); }

.progress-track { width: 100%; height: 8px; border-radius: var(--radius-full); background: var(--surface-alt); overflow: hidden; border: 1px solid var(--border); }
.progress-fill { height: 100%; border-radius: var(--radius-full); background: var(--primary); transition: width .4s ease; }
.progress-fill.success { background: var(--success); }
.progress-fill.warning { background: var(--warning); }
.progress-fill.danger { background: var(--danger); }
.progress-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-top: 8px; }

.donut-legend { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.legend-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.legend-label { flex: 1; color: var(--text-muted); }
.legend-value { font-weight: 700; }

/* =============================================================================
   EMPTY / LOADING STATES
============================================================================= */
.empty-state { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 46px 20px; color: var(--text-muted); }
.empty-state i { font-size: 30px; color: var(--text-faint); margin-bottom: 14px; }
.empty-state h4 { font-size: 15px; color: var(--text); margin-bottom: 6px; }
.empty-state p { font-size: 13px; max-width: 320px; margin-bottom: 16px; }

.loading-block { display: flex; align-items: center; justify-content: center; padding: 50px 0; color: var(--text-faint); gap: 10px; }
.spinner { width: 20px; height: 20px; border-radius: 50%; border: 3px solid var(--border); border-top-color: var(--primary); animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton { background: linear-gradient(90deg, var(--surface-alt) 25%, var(--border) 37%, var(--surface-alt) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* =============================================================================
   MODAL / TOAST
============================================================================= */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 16, 20, 0.5); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal-box {
  background: var(--surface); border-radius: var(--radius-lg); width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.modal-box.modal-lg { max-width: 620px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.modal-head h3 { font-size: 16px; font-weight: 800; }
.modal-body { padding: 22px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 22px; border-top: 1px solid var(--border); }

.toast-stack { position: fixed; top: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 340px; }
.toast {
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm); padding: 12px 14px; box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600;
  display: flex; align-items: flex-start; gap: 10px; animation: toast-in .2s ease;
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.info { border-left-color: var(--info); }
@keyframes toast-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

/* =============================================================================
   AUTH SCREENS
============================================================================= */
.auth-screen { min-height: 100vh; display: flex; }
.auth-visual {
  flex: 1.1; background: linear-gradient(155deg, #1a1c24 0%, #24131a 55%, #3a1420 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: space-between; padding: 48px;
  position: relative; overflow: hidden;
}
.auth-visual::after {
  content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,46,0.35), transparent 70%); top: -140px; right: -140px;
}
.auth-visual-brand { display: flex; align-items: center; gap: 10px; z-index: 1; }
.auth-visual-copy { z-index: 1; max-width: 420px; }
.auth-visual-copy h2 { font-size: 30px; font-weight: 800; line-height: 1.25; margin-bottom: 12px; }
.auth-visual-copy p { color: rgba(255,255,255,0.72); font-size: 14px; }
.auth-visual-stats { display: flex; gap: 22px; z-index: 1; }
.auth-visual-stats .stat { }
.auth-visual-stats .stat b { display: block; font-size: 20px; }
.auth-visual-stats .stat span { font-size: 11.5px; color: rgba(255,255,255,0.6); }

.auth-form-side { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px; background: var(--bg); }
.auth-form-box { width: 100%; max-width: 380px; }
.auth-form-box h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.auth-form-box .auth-sub { color: var(--text-muted); font-size: 13.5px; margin-bottom: 24px; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 13px; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 700; cursor: pointer; }
.auth-divider { display: flex; align-items: center; gap: 10px; color: var(--text-faint); font-size: 12px; margin: 18px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* =============================================================================
   MISC
============================================================================= */
.text-muted { color: var(--text-muted); }
.text-faint { color: var(--text-faint); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.w-full { width: 100%; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px; overflow-x: auto; }
.tab-btn { padding: 10px 16px; font-weight: 700; font-size: 13.5px; color: var(--text-muted); border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; }
.tab-btn.active { color: var(--primary); border-color: var(--primary); }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; align-items: center; }
.filter-bar .input, .filter-bar select { width: auto; min-width: 140px; }
.search-box { position: relative; flex: 1; min-width: 200px; }
.search-box i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-faint); font-size: 13px; }
.search-box input { padding-left: 34px; }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-dow { text-align: center; font-size: 11px; color: var(--text-faint); font-weight: 700; padding-bottom: 6px; }
.calendar-cell {
  min-height: 78px; border-radius: 10px; border: 1px solid var(--border); padding: 6px; cursor: pointer;
  background: var(--surface); transition: border-color .15s; display: flex; flex-direction: column; gap: 4px;
}
.calendar-cell:hover { border-color: var(--border-strong); }
.calendar-cell.today { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.calendar-cell.selected { background: var(--primary-soft); }
.calendar-cell.other-month { opacity: 0.4; }
.calendar-date { font-size: 12px; font-weight: 700; }
.calendar-dot-row { display: flex; gap: 3px; flex-wrap: wrap; }
.calendar-dot { width: 6px; height: 6px; border-radius: 50%; }

.public-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1180px; margin: 0 auto; }
.public-hero { max-width: 1180px; margin: 0 auto; padding: 60px 32px 40px; }
.public-page { background: var(--bg); min-height: 100vh; }
.public-content { max-width: 780px; margin: 0 auto; padding: 60px 24px 100px; }
.public-content h1 { font-size: 26px; font-weight: 800; margin-bottom: 18px; }
.public-content h2 { font-size: 16px; font-weight: 800; margin: 26px 0 10px; }
.public-content p, .public-content li { color: var(--text-muted); font-size: 13.5px; line-height: 1.7; margin-bottom: 10px; }
.public-content ul { padding-left: 18px; list-style: disc; }

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width: 980px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .col-span-2 { grid-column: span 1; }
  .auth-visual { display: none; }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); box-shadow: var(--shadow-lg); }
  .sidebar.open { transform: translateX(0); }
  .main-area { margin-left: 0; }
  .menu-toggle { display: inline-flex; }
  .grid-cols-4, .grid-cols-3 { grid-template-columns: 1fr 1fr; }
  .page-content { padding: 18px 16px 90px; }
  .topbar { padding: 0 16px; }
  .fab-add { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 39; }
  .sidebar-backdrop.show { display: block; }
}

@media (max-width: 480px) {
  .grid-cols-4, .grid-cols-3, .grid-cols-2 { grid-template-columns: 1fr; }
  .auth-form-box { max-width: 100%; }
  .topbar-title { font-size: 16px; }
}
