/* ============================================================
   LYNNOA LITE — Design System
   Dark Medical SaaS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --bg-base:       #111214;
  --bg-surface:    #1c1e22;
  --bg-card:       #242629;
  --bg-card-hover: #2c2f34;
  --bg-input:      #1a1c20;
  --bg-elevated:   #2e3035;

  --green-primary:  #9EF01A;
  --green-light:    #c8ff6e;
  --green-soft:     rgba(158,240,26,0.10);
  --green-border:   rgba(158,240,26,0.22);
  --green-glow:     0 0 28px rgba(158,240,26,0.15);

  --macro-protein: #f05252;
  --macro-carbs:   #3b82f6;
  --macro-fat:     #f59e0b;

  --text-primary:   #f0f2f5;
  --text-secondary: #8b909a;
  --text-muted:     #565b66;
  --text-accent:    #9EF01A;

  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);

  --success: #22c55e;
  --warning: #f59e0b;
  --danger:  #ef4444;
  --info:    #3b82f6;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-card:  0 2px 12px rgba(0,0,0,0.4);
  --shadow-modal: 0 20px 60px rgba(0,0,0,0.7);
  --transition:   0.2s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }

/* ---- Layout ---- */
.app-wrapper { display: flex; min-height: 100vh; }

.sidebar {
  width: 260px; height: 100vh;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; z-index: 100;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), width 0.25s cubic-bezier(0.4,0,0.2,1);
}

.sidebar-logo { padding: 24px 20px 18px; border-bottom: 1px solid var(--border); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  width: 36px; height: 36px;
  background: var(--green-soft); border: 1px solid var(--green-border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.brand-badge {
  font-size: 0.58rem; font-weight: 700; color: var(--green-primary);
  background: var(--green-soft); border: 1px solid var(--green-border);
  padding: 2px 7px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}

.sidebar-user {
  margin: 12px 14px; padding: 14px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 10px;
}
.user-avatar {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-primary), #5bc900);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #111;
}
.user-name { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-cedula { font-size: 0.7rem; color: var(--text-muted); margin-top: 1px; }

.sidebar-nav { flex: 1; padding: 8px 12px; overflow-y: auto; overflow-x: hidden; min-height: 0; }
.nav-section-label {
  font-size: 0.63rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); padding: 12px 10px 5px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--text-secondary); font-size: 0.875rem; font-weight: 500;
  font-family: var(--font-body);
  transition: all var(--transition); cursor: pointer; margin-bottom: 2px;
  text-decoration: none; border: 1px solid transparent;
  width: 100%; background: none; text-align: left; /* reset button defaults */
  box-sizing: border-box;
}
.nav-item:hover { background: var(--bg-card); color: var(--text-primary); border-color: transparent; }
.nav-item.active { background: var(--green-soft); border-color: var(--green-border); color: var(--green-primary); }
.nav-item .nav-badge {
  margin-left: auto; background: var(--green-soft); color: var(--green-primary);
  font-size: 0.63rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; border: 1px solid var(--green-border);
}
.nav-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: currentColor;
}

.sidebar-footer { padding: 14px; border-top: 1px solid var(--border); }
.plan-usage-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px;
}
.plan-usage-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.plan-usage-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.plan-usage-count { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.plan-usage-max { font-size: 0.72rem; color: var(--text-muted); }

.main-content { margin-left: 260px; flex: 1; display: flex; flex-direction: column; }

.topbar {
  height: 62px; background: var(--bg-surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 26px;
  position: sticky; top: 0; z-index: 50; gap: 12px;
}
.topbar-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.page-body { padding: 26px; flex: 1; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-card);
}
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.card-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* ---- Stat cards ---- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; transition: all var(--transition);
}
.stat-card:hover { border-color: var(--green-border); box-shadow: var(--green-glow); }
.stat-icon { font-size: 1.4rem; margin-bottom: 10px; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-value.accent { color: var(--green-primary); }
.stat-value.warning { color: var(--warning); }
.stat-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* ---- Macros ---- */
.macro-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.macro-card { border-radius: var(--radius-md); padding: 16px 12px; text-align: center; }
.macro-card.protein { background: rgba(240,82,82,0.10); border: 1px solid rgba(240,82,82,0.22); }
.macro-card.carbs   { background: rgba(59,130,246,0.10); border: 1px solid rgba(59,130,246,0.22); }
.macro-card.fat     { background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.22); }
.macro-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.macro-card.protein .macro-value { color: var(--macro-protein); }
.macro-card.carbs   .macro-value { color: var(--macro-carbs); }
.macro-card.fat     .macro-value { color: var(--macro-fat); }
.macro-label { font-size: 0.7rem; margin-top: 4px; }
.macro-card.protein .macro-label { color: var(--macro-protein); }
.macro-card.carbs   .macro-label { color: var(--macro-carbs); }
.macro-card.fat     .macro-label { color: var(--macro-fat); }

.macro-bar { height: 7px; border-radius: 4px; display: flex; overflow: hidden; gap: 2px; margin-top: 4px; }
.bar-protein { background: var(--macro-protein); height: 100%; border-radius: 4px; }
.bar-carbs   { background: var(--macro-carbs);   height: 100%; border-radius: 4px; }
.bar-fat     { background: var(--macro-fat);     height: 100%; border-radius: 4px; }

/* ---- Progress ---- */
.progress-wrap { background: var(--bg-elevated); border-radius: 8px; height: 9px; overflow: hidden; }
.progress-bar {
  height: 100%; border-radius: 8px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Botones ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--green-primary); color: #111; }
.btn-primary:hover { background: var(--green-light); color: #111; box-shadow: var(--green-glow); transform: translateY(-1px); }
.btn-cta {
  width: 100%; padding: 17px 24px; font-size: 0.95rem; font-weight: 700;
  border-radius: var(--radius-xl); background: var(--green-soft);
  border: 1px solid var(--green-border); color: var(--green-light);
}
.btn-cta:hover { background: var(--green-primary); color: #111; border-color: var(--green-primary); box-shadow: var(--green-glow); transform: translateY(-2px); }
.btn-secondary { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border-strong); }
.btn-secondary:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-card); color: var(--text-primary); }
.btn-danger { background: rgba(239,68,68,0.10); color: var(--danger); border: 1px solid rgba(239,68,68,0.22); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-whatsapp { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.25); }
.btn-whatsapp:hover { background: #25d366; color: #fff; }
.btn-sm { padding: 6px 13px; font-size: 0.78rem; }
.btn-lg { padding: 13px 26px; font-size: 1rem; }

/* ---- Forms ---- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-control {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); color: var(--text-primary);
  padding: 11px 14px; font-family: var(--font-body); font-size: 0.9rem;
  transition: all var(--transition); outline: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px var(--green-soft); }
.form-control::placeholder { color: var(--text-muted); }
.form-control:disabled { opacity: 0.5; }
textarea.form-control { resize: vertical; min-height: 80px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b909a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-hint  { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 0.72rem; color: var(--danger); margin-top: 4px; }
.input-row { display: grid; gap: 14px; }
.input-row.cols-2 { grid-template-columns: 1fr 1fr; }
.input-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; margin-bottom: 18px;
}
.form-section-title {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.form-section-title::before {
  content: ''; display: inline-block; width: 3px; height: 14px;
  background: var(--green-primary); border-radius: 2px;
}

.icon-input { position: relative; }
.icon-input .input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; font-size: 0.9rem; }
.icon-input .form-control { padding-left: 38px; }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table thead th {
  background: var(--bg-elevated); padding: 11px 16px; text-align: left;
  font-size: 0.7rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.data-table tbody tr { border-top: 1px solid var(--border); transition: background var(--transition); }
.data-table tbody tr:hover { background: var(--bg-card-hover); }
.data-table td { padding: 12px 16px; vertical-align: middle; }

/* ---- Badges ---- */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; white-space: nowrap; }
.badge-active   { background: rgba(34,197,94,0.12);  color: #22c55e; border: 1px solid rgba(34,197,94,0.28); }
.badge-inactive { background: rgba(107,114,128,0.12); color: #6b7280; border: 1px solid rgba(107,114,128,0.28); }
.badge-warning  { background: rgba(245,158,11,0.12);  color: #f59e0b; border: 1px solid rgba(245,158,11,0.28); }
.badge-danger   { background: rgba(239,68,68,0.12);   color: #ef4444; border: 1px solid rgba(239,68,68,0.28); }
.badge-info     { background: rgba(59,130,246,0.12);  color: #3b82f6; border: 1px solid rgba(59,130,246,0.28); }
.badge-green    { background: var(--green-soft); color: var(--green-primary); border: 1px solid var(--green-border); }

/* ---- Alerts ---- */
.alert {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-md);
  font-size: 0.875rem; margin-bottom: 18px; animation: slideDown 0.3s ease;
}
.alert-success { background: rgba(34,197,94,0.10);  border: 1px solid rgba(34,197,94,0.25);  color: #86efac; }
.alert-error   { background: rgba(239,68,68,0.10);   border: 1px solid rgba(239,68,68,0.25);   color: #fca5a5; }
.alert-warning { background: rgba(245,158,11,0.10);  border: 1px solid rgba(245,158,11,0.25);  color: #fcd34d; }
.alert-info    { background: rgba(59,130,246,0.10);  border: 1px solid rgba(59,130,246,0.25);  color: #93c5fd; }
.alert-close { margin-left: auto; cursor: pointer; opacity: 0.6; background: none; border: none; color: inherit; font-size: 1rem; }
@keyframes slideDown { from { transform: translateY(-6px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---- Auth ---- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-base); padding: 20px; position: relative; overflow: hidden;
}
.auth-page::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(158,240,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.auth-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 42px; width: 100%; max-width: 420px;
  position: relative; z-index: 1; box-shadow: var(--shadow-modal);
}
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo-icon {
  width: 54px; height: 54px; background: var(--green-soft); border: 1px solid var(--green-border);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 12px;
}
.auth-logo-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.auth-logo-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.auth-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 6px; }
.auth-subtitle { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 26px; }

/* ---- Plan 15 días ---- */
.plan-day-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.plan-day-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
.plan-day-card:hover { border-color: var(--green-border); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.plan-day-header {
  background: var(--bg-elevated); padding: 11px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.plan-day-number { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; color: var(--green-primary); text-transform: uppercase; letter-spacing: 0.06em; }
.plan-day-cals { font-size: 0.72rem; color: var(--text-muted); }
.plan-day-body { padding: 12px 14px; }
.plan-meal { display: flex; gap: 9px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.plan-meal:last-child { border-bottom: none; }
.plan-meal-icon { font-size: 0.95rem; flex-shrink: 0; width: 20px; text-align: center; margin-top: 2px; }
.plan-meal-type { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.plan-meal-name { font-size: 0.8rem; color: var(--text-primary); line-height: 1.4; margin-top: 1px; }

/* ---- Measurement rows ---- */
.mrow { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.mrow:last-child { border-bottom: none; }
.mrow-label { color: var(--text-secondary); }
.mrow-value { font-weight: 600; font-family: var(--font-display); }

/* ---- Caloric highlight ---- */
.caloric-highlight {
  background: var(--bg-elevated); border-radius: var(--radius-md);
  padding: 13px 16px; display: flex; justify-content: space-between; align-items: center; margin-top: 10px;
}
.caloric-highlight .ch-label { font-size: 0.875rem; color: var(--text-secondary); }
.caloric-highlight .ch-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }

/* ---- Empty state ---- */
.empty-state { text-align: center; padding: 56px 20px; }
.empty-icon { font-size: 2.8rem; margin-bottom: 14px; opacity: 0.35; }
.empty-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.empty-text { font-size: 0.83rem; color: var(--text-muted); max-width: 300px; margin: 0 auto 22px; }

/* ---- Spinner / Loading ---- */
.spinner { width: 18px; height: 18px; border: 2px solid var(--border-strong); border-top-color: var(--green-primary); border-radius: 50%; animation: spin 0.6s linear infinite; display: inline-block; }
.spinner-lg { width: 34px; height: 34px; border-width: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }

.gen-loading { text-align: center; padding: 40px; }
.gen-spinner { width: 54px; height: 54px; border: 3px solid var(--green-soft); border-top-color: var(--green-primary); border-radius: 50%; animation: spin 0.9s linear infinite; margin: 0 auto 18px; }
.gen-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--green-primary); margin-bottom: 6px; }
.gen-sub { font-size: 0.83rem; color: var(--text-muted); }

/* ---- Hamburger / Responsive ---- */
.hamburger {
  display: none; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 7px; cursor: pointer;
  color: var(--text-primary); flex-shrink: 0;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-card); }

.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 99;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.visible { display: block; }

/* Tablet */
@media (max-width: 1024px) {
  .sidebar { width: 220px; }
  .main-content { margin-left: 220px; }
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    width: 280px;
    transform: translateX(-100%);
    z-index: 100;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 0 0 60px rgba(0,0,0,0.7);
  }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .page-body { padding: 16px; }
  .topbar { padding: 0 16px; gap: 10px; }
  .topbar-title { font-size: 0.9rem; }
  .input-row.cols-2,
  .input-row.cols-3 { grid-template-columns: 1fr; }
  .plan-day-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .table-wrap { font-size: 0.82rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .page-body { padding: 12px; }
  .stat-card { padding: 14px; }
  .topbar-actions .badge { display: none; }
}

/* ---- Utilities ---- */
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--green-primary); }
.text-sm { font-size: 0.8rem; }
.text-xs { font-size: 0.7rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-display { font-family: var(--font-display); }
.fw-bold { font-weight: 700; }
.fw-600 { font-weight: 600; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; } .mb-20 { margin-bottom: 20px; } .mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.rounded { border-radius: var(--radius-md); }

.ing-equiv { font-size: 0.75rem; color: var(--green-primary); font-weight: 500; opacity: 0.85; }
