
/* ══════════════════════════════════════════════
   MetalERP — Design System
   Identidad: precisión industrial, sin ornamentos
   Paleta: acero, carbono, naranja técnico
══════════════════════════════════════════════ */
:root {
  /* Superficies */
  --bg-body:    #F4F5F7;
  --bg-white:   #FFFFFF;
  --bg-subtle:  #F8F9FA;
  --bg-muted:   #ECEEF1;

  /* Sidebar — carbono oscuro */
  --sb-bg:      #1A1D23;
  --sb-hover:   rgba(255,255,255,0.05);
  --sb-active:  rgba(255,255,255,0.08);
  --sb-text:    rgba(255,255,255,0.50);
  --sb-text-hi: rgba(255,255,255,0.90);
  --sb-divider: rgba(255,255,255,0.06);
  --sb-accent:  #F97316;

  /* Texto */
  --tx-primary:   #111318;
  --tx-secondary: #4A5568;
  --tx-muted:     #8A94A6;
  --tx-link:      #1D6FA4;

  /* Bordes */
  --bd:       #DDE1E9;
  --bd-focus: #F97316;

  /* Semánticos — naranja técnico como primario */
  --c-blue:   #1D6FA4;  --c-blue-bg:   #EBF4FB;
  --c-green:  #16A34A;  --c-green-bg:  #ECFDF5;
  --c-amber:  #D97706;  --c-amber-bg:  #FFFBEB;
  --c-red:    #DC2626;  --c-red-bg:    #FEF2F2;
  --c-purple: #7C3AED;  --c-purple-bg: #F5F3FF;
  --c-teal:   #0D9488;  --c-teal-bg:   #F0FDFA;
  --c-gray:   #64748B;  --c-gray-bg:   #F1F5F9;
  --c-orange: #F97316;  --c-orange-bg: #FFF7ED;

  /* Acción primaria — naranja técnico */
  --c-primary:    #F97316;
  --c-primary-dk: #EA6A0A;
  --c-primary-bg: #FFF7ED;

  /* Tamaños */
  --sb-w:     212px;
  --sb-w-col: 44px;
  --topbar-h: 48px;
  --r:    5px;
  --r-sm: 3px;
  --shadow:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', monospace;
  --transition: 0.16s ease;
}

/* ═══════════════════════════════════════════════  RESET  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); font-size: 13px; color: var(--tx-primary);
       background: var(--bg-body); display: flex; height: 100vh; overflow: hidden;
       -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }

/* ═══════════════════════════════════════════════  SCROLLBAR */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ═══════════════════════════════════════════════
   SIDEBAR  —  Claude.ai style
═══════════════════════════════════════════════ */
#sidebar {
  width: var(--sb-w);
  min-width: var(--sb-w);
  background: var(--bg-body);          /* same light gray as page */
  border-right: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  transition: width var(--transition), min-width var(--transition);
  overflow: hidden;
  z-index: 100;
  flex-shrink: 0;
}
#sidebar.collapsed { width: var(--sb-w-col); min-width: var(--sb-w-col); }

/* ── Logo ── */
.sb-logo {
  height: var(--topbar-h);
  display: flex; align-items: center;
  padding: 0 16px; gap: 10px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--sb-divider);
}
.sb-logo-icon {
  width: 24px; height: 24px; border-radius: 4px;
  background: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--bg-white);
  flex-shrink: 0; cursor: pointer; user-select: none;
  letter-spacing: -0.5px;
  transition: opacity var(--transition);
}
.sb-logo-icon:hover { opacity: 0.7; }
.sb-logo-name {
  font-size: 13px; font-weight: 700; color: var(--sb-text-hi); letter-spacing: -.3px;
  white-space: nowrap; overflow: hidden;
  transition: opacity var(--transition), width var(--transition);
  letter-spacing: -.2px;
}
#sidebar.collapsed .sb-logo-name { opacity: 0; width: 0; }

/* ── Nav ── */
.sb-nav { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 8px 0 12px; }

/* ── Sección ── */
.sb-section { margin-bottom: 2px; }
.sb-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px 2px;
  cursor: pointer; user-select: none;
}
.sb-section-header:hover .sb-section-label { color: var(--sb-text-hi); }
.sb-section-label {
  font-size: 10px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sb-text);
  white-space: nowrap; overflow: hidden;
  transition: opacity var(--transition), color var(--transition);
}
.sb-section-chevron {
  flex-shrink: 0; color: var(--tx-muted); opacity: 0.4;
  transition: transform var(--transition), opacity var(--transition);
}
.sb-section.open .sb-section-chevron { transform: rotate(90deg); }
#sidebar.collapsed .sb-section-label   { opacity: 0; }
#sidebar.collapsed .sb-section-chevron { opacity: 0; }
#sidebar.collapsed .sb-section-header  { pointer-events: none; padding: 4px 0; }

/* ── Items ── */
.sb-items { max-height: 0; overflow: hidden; transition: max-height 0.22s ease; }
.sb-section.open .sb-items { max-height: 600px; }
#sidebar.collapsed .sb-items { max-height: 600px !important; }
#sidebar.collapsed .sb-item-bloqueado,
#sidebar.collapsed .sb-item[style*="display: none"],
#sidebar.collapsed .sb-item[style*="display:none"] { display: none !important; }

.sb-item {
  display: flex; align-items: center; gap: 0;
  padding: 5px 16px;
  margin: 0;
  border-radius: 0;
  color: var(--sb-text);
  cursor: pointer;
  font-size: 13px; font-weight: 400;
  white-space: nowrap; position: relative;
  transition: color var(--transition), background var(--transition);
  user-select: none;
  border-left: 2px solid transparent;
}
.sb-item:hover {
  color: var(--sb-text-hi);
  background: var(--sb-hover);
}
.sb-item.active {
  color: var(--sb-text-hi);
  font-weight: 600;
  background: var(--sb-active);
  border-left-color: var(--c-orange);
}

/* Ocultar íconos SVG — no se usan en modo minimalista */
.sb-item-icon { display: none; }

.sb-item-label {
  overflow: hidden;
  transition: opacity var(--transition);
  font-size: 13px;
}
#sidebar.collapsed .sb-item-label { opacity: 0; width: 0; overflow: hidden; }

.sb-item-badge {
  margin-left: auto; flex-shrink: 0;
  font-size: 10px; font-weight: 600; font-family: var(--mono);
  background: rgba(255,255,255,0.12); color: var(--sb-text-hi);
  padding: 1px 5px; border-radius: 3px;
  transition: opacity var(--transition);
}
.sb-item.active .sb-item-badge { background: var(--c-orange); color: #fff; }
.sb-item-badge.red { background: var(--c-red); }
#sidebar.collapsed .sb-item-badge { opacity: 0; width: 0; padding: 0; overflow: hidden; }

/* ── Collapsed state ── */
#sidebar.collapsed .sb-item {
  padding: 8px 0;
  justify-content: center;
  border-left: none;
  border-radius: 0;
}

/* Tooltip when collapsed: iniciales del ítem */
#sidebar.collapsed .sb-item::before {
  content: attr(data-initial);
  font-size: 11px; font-weight: 600;
  color: var(--sb-text);
  width: var(--sb-w-col);
  text-align: center;
}
#sidebar.collapsed .sb-item.active::before { color: var(--c-orange); }
#sidebar.collapsed .sb-item:hover::before  { color: var(--sb-text-hi); }

/* Tooltip label on hover */
#sidebar.collapsed .sb-item::after {
  content: attr(data-label);
  position: absolute; left: calc(var(--sb-w-col) + 6px); top: 50%; transform: translateY(-50%);
  background: #1A1D23; color: rgba(255,255,255,0.9);
  padding: 4px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 500; white-space: nowrap; z-index: 300;
  pointer-events: none; opacity: 0;
  transition: opacity 0.12s;
  box-shadow: var(--shadow-md);
}
#sidebar.collapsed .sb-item:hover::after { opacity: 1; }

/* Divisor entre secciones colapsado */
#sidebar.collapsed .sb-section-header::after {
  content: ''; display: block; width: 16px; height: 1px;
  background: var(--bd); margin: 4px auto;
}

/* divider between sections when collapsed */
#sidebar.collapsed .sb-section-header::after {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--bd); margin: 2px auto;
}

/* bottom of sidebar — user area — always at bottom */
.sb-footer {
  padding: 8px 0; border-top: 1px solid var(--sb-divider); flex-shrink: 0;
  margin-top: auto;
}
.sb-user {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  cursor: pointer; transition: background var(--transition);
}
.sb-user:hover { background: var(--sb-hover); }
.sb-user-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-orange); color: var(--bg-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.sb-user-info { overflow: hidden; transition: opacity var(--transition); }
.sb-user-name { font-size: 12.5px; font-weight: 500; color: var(--sb-text-hi); white-space: nowrap; }
.sb-user-role { font-size: 11px; color: var(--sb-text); white-space: nowrap; }
#sidebar.collapsed .sb-user-info { opacity: 0; width: 0; }
#sidebar.collapsed .sb-user { justify-content: center; padding: 6px 0; }

/* ═══════════════════════════════════════════════
   MAIN AREA
═══════════════════════════════════════════════ */
#main {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* topbar */
#topbar {
  height: var(--topbar-h);
  background: var(--bg-white);
  border-bottom: 1px solid var(--bd);
  display: flex; align-items: center;
  padding: 0 20px; gap: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.tb-breadcrumb { display: flex; align-items: center; gap: 6px; }
.tb-crumb { font-size: 12px; color: var(--tx-muted); cursor: pointer; transition: color .15s; }
.tb-crumb:hover { color: var(--c-orange); }
.tb-crumb-sep { color: var(--tx-muted); font-size: 14px; }
.tb-title { font-size: 14px; font-weight: 600; color: var(--tx-primary); letter-spacing: -.2px; }
.tb-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }

/* page content */
#content { flex: 1; overflow-y: auto; padding: 20px; }

/* ═══════════════════════════════════════════════
   MODULE PAGES
═══════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════
   COMPONENTS
═══════════════════════════════════════════════ */

/* --- Stat cards --- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 16px;
  flex: 1; min-width: 0;
  box-shadow: var(--shadow);
}
.stat-label { font-size: 11px; font-weight: 500; color: var(--tx-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.stat-value { font-size: 24px; font-weight: 600; color: var(--tx-primary); font-family: var(--mono); letter-spacing: -0.5px; line-height: 1; }
.stat-sub { font-size: 11px; color: var(--tx-muted); margin-top: 6px; }
.stat-up { color: var(--c-green); }
.stat-down { color: var(--c-red); }

/* --- Card --- */
.card {
  background: var(--bg-white); border: 1px solid var(--bd);
  border-radius: var(--r); margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--bd);
}
.card-title { font-size: 13px; font-weight: 600; color: var(--tx-primary); }
.card-body { padding: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* --- Table --- */
.erp-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.erp-table thead th {
  padding: 8px 10px;
  font-size: 11px; font-weight: 600;
  color: var(--tx-muted);
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--bd);
  white-space: nowrap;
  text-transform: uppercase; letter-spacing: .04em;
}
.erp-table tbody td {
  padding: 10px 14px; border-bottom: 1px solid var(--bg-muted);
  color: var(--tx-secondary); vertical-align: middle;
}
.erp-table tbody tr:last-child td { border-bottom: none; }
.erp-table tbody tr:hover td { background: var(--bg-subtle); }
.erp-table tbody tr.clickable { cursor: pointer; }
.erp-table tbody tr.clickable:hover td { background: var(--c-blue-bg); }

/* --- Badges --- */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px; font-weight: 500;
  white-space: nowrap;
}
.b-blue   { background: var(--c-blue-bg);   color: var(--c-blue);   }
.b-green  { background: var(--c-green-bg);  color: var(--c-green);  }
.b-amber  { background: var(--c-amber-bg);  color: var(--c-amber);  }
.b-red    { background: var(--c-red-bg);    color: var(--c-red);    }
.b-purple { background: var(--c-purple-bg); color: var(--c-purple); }
.b-teal   { background: var(--c-teal-bg);   color: var(--c-teal);   }
.b-gray   { background: var(--c-gray-bg);   color: var(--c-gray);   }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: var(--r-sm);
  font-size: 12.5px; font-weight: 500; font-family: var(--font);
  border: 1px solid var(--bd); background: var(--bg-white);
  color: var(--tx-secondary); cursor: pointer;
  transition: all 0.12s; white-space: nowrap;
}
.btn:hover { background: var(--bg-subtle); border-color: #c5cbd4; color: var(--tx-primary); }
.btn-primary { background: var(--c-primary); color: #fff; border-color: var(--c-primary); font-weight: 600; }
.btn-primary:hover { background: var(--c-primary-dk); border-color: var(--c-primary-dk); color: #fff; }
.btn-success { background: var(--c-green); color: #fff; border-color: var(--c-green); }
.btn-success:hover { background: #15803d; border-color: #15803d; color: #fff; }
.btn-danger  { background: var(--c-red);  color: #fff; border-color: var(--c-red);  }
.btn-danger:hover  { background: #b91c1c; border-color: #b91c1c; color: #fff; }
.btn-sm { padding: 4px 9px; font-size: 11.5px; }
.btn-xs { padding: 2px 7px; font-size: 11px; }
.btn svg { width: 13px; height: 13px; }

/* --- Form elements --- */
.form-section { margin-bottom: 20px; }
.form-section-title {
  font-size: 11px; font-weight: 600; color: var(--tx-muted);
  text-transform: uppercase; letter-spacing: .06em;
  padding-bottom: 8px; margin-bottom: 12px;
  border-bottom: 1px solid var(--bd);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 12px; }
.form-label {
  display: block; font-size: 11.5px; font-weight: 500;
  color: var(--tx-secondary); margin-bottom: 5px;
}
.form-label.required::after { content: ' *'; color: var(--c-red); }
.form-control {
  width: 100%; padding: 7px 10px;
  border: 1px solid var(--bd); border-radius: var(--r-sm);
  background: var(--bg-white); color: var(--tx-primary);
  font-size: 13px; font-family: var(--font);
  transition: border-color 0.12s, box-shadow 0.12s;
}
.form-control:focus {
  outline: none; border-color: var(--bd-focus);
  box-shadow: 0 0 0 3px rgba(44,94,247,0.12);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 72px; }

/* inline item table */
.item-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.item-table th {
  padding: 7px 10px; text-align: left; font-size: 11px; font-weight: 600;
  color: var(--tx-muted); border-bottom: 1px solid var(--bd);
  background: var(--bg-subtle); text-transform: uppercase; letter-spacing: .04em;
}
.item-table td { padding: 5px 6px; border-bottom: 1px solid var(--bg-muted); }
.item-table tr:last-child td { border-bottom: none; }
.item-table .ic { width: 100%; border: none; background: transparent; font-size: 12px; font-family: var(--font); color: var(--tx-primary); padding: 3px 4px; }
.item-table .ic:focus { outline: 1px solid var(--bd-focus); border-radius: 2px; }

/* --- Progress --- */
.progress { height: 5px; background: var(--bg-muted); border-radius: 3px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: 3px; }

/* --- Avatar --- */
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-blue-bg); color: var(--c-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 600; flex-shrink: 0;
}

/* --- Tabs (inside modal/form) --- */
.tab-bar { display: flex; border-bottom: 1px solid var(--bd); margin-bottom: 14px; }

/* ── Lengüetas tipo carpeta ── */
.tabs-folder {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--bd);
  margin-bottom: 0;
}
.tab-folder {
  position: relative;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--tx-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--bd);
  border-bottom: none;
  border-radius: var(--r) var(--r) 0 0;
  cursor: pointer;
  margin-right: 3px;
  bottom: -1px;
  transition: color 0.15s, background 0.15s;
  font-family: var(--font);
}
.tab-folder:hover { color: var(--tx-primary); background: var(--bg-muted); }
.tab-folder.active {
  color: var(--c-primary);
  background: var(--bg-white);
  border-color: var(--bd);
  border-bottom-color: var(--bg-white);
  font-weight: 600;
  z-index: 1;
}
.tab-folder-content {
  background: var(--bg-white);
  border: 1px solid var(--bd);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  padding: 16px;
  margin-bottom: 14px;
}
.tab-item {
  padding: 8px 16px; font-size: 12.5px; cursor: pointer;
  color: var(--tx-muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; font-weight: 500; white-space: nowrap;
}
.tab-item:hover { color: var(--tx-secondary); }
.tab-item.active { color: var(--c-blue); border-bottom-color: var(--c-blue); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* --- Alerts --- */
.alert {
  display: flex; gap: 10px; padding: 10px 14px;
  border-radius: var(--r-sm); border-left: 3px solid;
  margin-bottom: 10px; font-size: 12.5px;
}
.alert strong { display: block; font-weight: 600; margin-bottom: 2px; }
.alert-red    { background: var(--c-red-bg);    border-color: var(--c-red);    color: #7f1d1d; }
.alert-amber  { background: var(--c-amber-bg);  border-color: var(--c-amber);  color: #78350f; }
.alert-blue   { background: var(--c-blue-bg);   border-color: var(--c-blue);   color: #1e3a8a; }
.alert-green  { background: var(--c-green-bg);  border-color: var(--c-green);  color: #14532d; }

/* --- Mono value --- */
.mono { font-family: var(--mono); font-size: 12px; }
.link { color: var(--c-blue); cursor: pointer; }
.link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   MODAL / OVERLAY
═══════════════════════════════════════════════ */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.35); z-index: 400;
  align-items: flex-start; justify-content: center;
  padding-top: 60px;
}
.overlay.open { display: flex; }
.modal {
  background: var(--bg-white); border-radius: var(--r);
  width: 680px; max-height: 85vh; overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bd);
}
.modal-header {
  padding: 14px 18px; border-bottom: 1px solid var(--bd);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: var(--bg-white); z-index: 1;
}
.modal-title { font-size: 14px; font-weight: 600; color: var(--tx-primary); }
.modal-body { padding: 18px; flex: 1; }
.modal-footer {
  padding: 12px 18px; border-top: 1px solid var(--bd);
  display: flex; justify-content: flex-end; gap: 8px;
  background: var(--bg-subtle);
}
.btn-close {
  background: none; border: none; cursor: pointer;
  color: var(--tx-muted); font-size: 18px; line-height: 1; padding: 2px;
}
.btn-close:hover { color: var(--tx-primary); }

/* detail side panel */
.side-panel {
  display: none; position: fixed; top: 0; right: 0; bottom: 0;
  width: 480px; background: var(--bg-white);
  border-left: 1px solid var(--bd); z-index: 350;
  flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,.08);
}
.side-panel.open { display: flex; }

/* ── HELP DRAWER ── */
#help-drawer {
  position: fixed; top: 0; right: -400px; bottom: 0; width: 380px;
  background: var(--bg-white); border-left: 1px solid var(--bd);
  z-index: 500; display: flex; flex-direction: column;
  box-shadow: -6px 0 24px rgba(0,0,0,.10);
  transition: right 0.25s ease;
}
#help-drawer.open { right: 0; }
#help-drawer-header {
  padding: 14px 16px; border-bottom: 1px solid var(--bd);
  background: var(--bg-subtle); display: flex; align-items: center;
  justify-content: space-between; flex-shrink: 0;
}
#help-drawer-body { flex: 1; overflow-y: auto; padding: 20px 16px; }
.help-step {
  display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start;
}
.help-step-num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--c-blue);
  color: #fff; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.help-step-body { flex: 1; }
.help-step-title { font-size: 13px; font-weight: 600; color: var(--tx-primary); margin-bottom: 2px; }
.help-step-desc { font-size: 12px; color: var(--tx-secondary); line-height: 1.5; }
.help-connector {
  width: 2px; height: 14px; background: var(--bd); margin: 0 0 4px 12px;
}
.help-section-label {
  font-size: 10.5px; font-weight: 600; color: var(--tx-muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin: 16px 0 10px; border-bottom: 1px solid var(--bd); padding-bottom: 6px;
}
.panel-header {
  padding: 14px 18px; border-bottom: 1px solid var(--bd);
  background: var(--bg-subtle); flex-shrink: 0;
}
.panel-body { flex: 1; overflow-y: auto; padding: 18px; }
.panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid var(--bg-muted);
  font-size: 12.5px;
}
.panel-row:last-child { border-bottom: none; }
.panel-row .key { color: var(--tx-muted); font-size: 12px; }
.panel-row .val { font-weight: 500; color: var(--tx-primary); }
.panel-section-title {
  font-size: 10.5px; font-weight: 600; color: var(--tx-muted);
  text-transform: uppercase; letter-spacing: .06em;
  padding: 12px 0 6px; border-bottom: 1px solid var(--bd); margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════
   ACTIVITY PANEL (ERPNext-style: comments/log/attachments)
═══════════════════════════════════════════════ */
.activity-bar {
  background: var(--bg-subtle); border: 1px solid var(--bd);
  border-radius: var(--r); margin-top: 16px; overflow: hidden;
}
.activity-tabs { display: flex; border-bottom: 1px solid var(--bd); background: var(--bg-white); }
.activity-tab {
  padding: 9px 16px; font-size: 12.5px; cursor: pointer;
  color: var(--tx-muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; font-weight: 500;
}
.activity-tab:hover { color: var(--tx-secondary); }
.activity-tab.active { color: var(--c-blue); border-bottom-color: var(--c-blue); }
.activity-pane { display: none; padding: 14px; }
.activity-pane.active { display: block; }

/* comment feed */
.comment-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 14px; max-height: 260px; overflow-y: auto; }
.comment-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bg-muted); }
.comment-item:last-child { border-bottom: none; }
.comment-av { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.comment-meta { font-size: 11px; color: var(--tx-muted); margin-bottom: 3px; }
.comment-author { font-weight: 600; color: var(--tx-secondary); }
.comment-text { font-size: 12.5px; color: var(--tx-secondary); line-height: 1.5; }
.mention { color: var(--c-blue); font-weight: 500; }
.comment-input-wrap { display: flex; gap: 8px; align-items: flex-end; }
.comment-box {
  flex: 1; padding: 7px 10px; border: 1px solid var(--bd);
  border-radius: var(--r-sm); font-size: 13px; font-family: var(--font);
  background: var(--bg-white); resize: none; min-height: 36px; color: var(--tx-primary);
}
.comment-box:focus { outline: none; border-color: var(--bd-focus); box-shadow: 0 0 0 3px rgba(44,94,247,.10); }

/* attachments */
.attach-drop {
  border: 1.5px dashed var(--bd); border-radius: var(--r-sm);
  padding: 20px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.attach-drop:hover { border-color: var(--c-blue); background: var(--c-blue-bg); }
.attach-icon { color: var(--tx-muted); margin-bottom: 6px; }
.attach-list { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.attach-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px; background: var(--bg-white); border: 1px solid var(--bd);
  border-radius: var(--r-sm); font-size: 12px; color: var(--tx-secondary);
}
.attach-del { background: none; border: none; color: var(--tx-muted); cursor: pointer; font-size: 14px; }
.attach-del:hover { color: var(--c-red); }

/* assign row (whatsapp) */
.assign-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.wa-banner {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--r-sm);
}
.wa-icon-wrap { width: 28px; height: 28px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-text { flex: 1; font-size: 11.5px; color: #166534; }
.toggle { position: relative; width: 36px; height: 20px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: #d1d5db; border-radius: 10px; cursor: pointer; transition: .18s; }
.toggle input:checked + .toggle-track { background: #25D366; }
.toggle-track::before { content: ''; position: absolute; width: 14px; height: 14px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .18s; }
.toggle input:checked + .toggle-track::before { transform: translateX(16px); }

/* log */
.log-list { display: flex; flex-direction: column; }
.log-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--bg-muted); font-size: 12px; }
.log-item:last-child { border-bottom: none; }
.log-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.log-time { font-family: var(--mono); font-size: 10.5px; color: var(--tx-muted); white-space: nowrap; min-width: 70px; }
.log-text { color: var(--tx-secondary); flex: 1; }
.log-text strong { color: var(--tx-primary); }

/* quick new entity */
.inline-new {
  display: none; background: var(--c-blue-bg);
  border: 1px solid #bfdbfe; border-radius: var(--r-sm);
  padding: 12px 14px; margin-top: 4px;
}
.inline-new.open { display: block; }
.inline-new-title {
  font-size: 11.5px; font-weight: 600; color: var(--c-blue);
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.inline-new-title a { font-weight: 400; font-size: 11px; color: var(--tx-muted); cursor: pointer; text-decoration: underline; }

/* print doc */
.print-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 500;
  align-items: center; justify-content: center;
}
.print-overlay.open { display: flex !important; }
.print-shell { background: #e5e7eb; padding: 14px; border-radius: var(--r); width: 720px; max-height: 92vh; overflow-y: auto; }
.print-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.print-doc { background: #fff; padding: 44px 52px; font-family: 'Inter', sans-serif; color: #111; border-radius: 4px; }
.doc-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 20px; border-bottom: 2px solid #111; margin-bottom: 22px; }
.doc-logo-wrap { display: flex; align-items: center; gap: 12px; }
.doc-logo-sq { width: 42px; height: 42px; background: var(--c-blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; font-weight: 700; }
.doc-co { font-size: 15px; font-weight: 700; }
.doc-co-sub { font-size: 11px; color: #555; margin-top: 2px; }
.doc-num-block { text-align: right; }
.doc-type-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #888; }
.doc-num { font-size: 26px; font-weight: 700; font-family: monospace; color: #111; }
.doc-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #f7f7f7; padding: 14px; border-radius: 4px; margin-bottom: 18px; }
.doc-meta-cell .ml { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #888; margin-bottom: 3px; }
.doc-meta-cell .mv { font-size: 13px; font-weight: 600; }
.doc-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.doc-table th { background: #111; color: #fff; padding: 8px 12px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.doc-table td { padding: 9px 12px; border-bottom: 1px solid #eee; font-size: 12.5px; }
.doc-table .total-row { background: #f7f7f7; font-weight: 700; }
.doc-sigs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 30px; border-top: 1.5px solid #111; padding-top: 14px; }
.doc-sig { text-align: center; }
.doc-sig-line { border-top: 1px solid #aaa; margin-top: 40px; padding-top: 6px; font-size: 11px; color: #666; }

/* toast */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 10px 16px; border-radius: var(--r-sm); font-size: 12.5px;
  font-family: var(--font); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  animation: slide-up .2s ease;
}
@keyframes slide-up { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.toast-success { background: var(--c-green-bg); border: 1px solid #86efac; color: #14532d; }
.toast-error   { background: var(--c-red-bg);   border: 1px solid #fca5a5; color: #7f1d1d; }
.toast-info    { background: var(--c-blue-bg);  border: 1px solid #93c5fd; color: #1e3a8a; }
.toast-warning { background: var(--c-amber-bg); border: 1px solid #fcd34d; color: #78350f; }

/* utils */
.row-flex { display: flex; align-items: center; gap: 8px; }
.text-muted { color: var(--tx-muted); }
.text-right { text-align: right; }
.fw-6 { font-weight: 600; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }
/* ═══════════════════ TALLER MATRIX CSS ═══════════════════ */

/* Header row */
#taller-matrix thead th {
  background: #1e2433;
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 10px 10px;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 2;
}
#taller-matrix thead th:first-child {
  text-align: left;
  background: #1e2433;
  color: #cbd5e1;
  min-width: 190px;
  width: 190px;
  position: sticky;
  left: 0;
  z-index: 3;
  border-right: 2px solid rgba(255,255,255,.1);
}
#taller-matrix thead th:last-child { border-right: none; }
.th-cap {
  font-size: 9.5px;
  font-weight: 400;
  color: #64748b;
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  letter-spacing: 0;
}

/* OT info cell (first col) */
.ot-info-cell {
  background: var(--bg-white);
  border-right: 2px solid var(--c-blue);
  padding: 9px 12px;
  vertical-align: top;
  cursor: default;
  position: sticky;
  left: 0;
  z-index: 1;
  transition: background .12s;
}
.ot-info-cell:hover { background: var(--c-blue-bg); }
.ot-id { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--c-blue); }
.ot-name { font-size: 12px; font-weight: 600; color: var(--tx-primary); margin-top: 1px; line-height: 1.3; }
.ot-client { font-size: 11px; color: var(--tx-muted); margin-top: 1px; }
.ot-deadline { font-size: 10.5px; font-family: var(--mono); margin-top: 3px; }
.ot-urgent-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--c-red); color: #fff;
  font-size: 9.5px; font-weight: 700; padding: 1px 6px;
  border-radius: 3px; margin-top: 3px; letter-spacing: .03em;
}

/* OT rows */
.ot-row { border-bottom: 1px solid var(--bg-muted); }
.ot-row:last-child { border-bottom: none; }
.ot-row.urgent .ot-info-cell {
  background: #fff5f5;
  border-right-color: var(--c-red);
}
.ot-row.urgent:hover .ot-info-cell { background: #fee2e2; }

/* Matrix cells */
.mat-cell {
  padding: 4px;
  vertical-align: top;
  border-right: 1px solid var(--bg-muted);
  min-width: 112px;
  width: 112px;
}
.mat-cell:last-child { border-right: none; }
.mat-cell.alt-col { background: #fcfcfd; }
.ot-row.urgent .mat-cell { background: #fff8f8; }
.ot-row.cerrada .ot-info-cell { background: #f0fdf4; border-right-color: var(--c-green); opacity:.85; }
.ot-row.cerrada .mat-cell { background: #f7fdf9; }
.ot-row.urgent .mat-cell.alt-col { background: #fff5f5; }

/* Cell card — compact, supervisor-focused */
.cell-card {
  border-radius: 5px;
  padding: 5px 7px 4px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  position: relative;
}
.cell-card.empty {
  background: transparent;
  border: 1.5px dashed #e9eaec;
  min-height: 56px;
  cursor: default;
}
/* Estado pill */
.cell-status {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 3px;
}
/* Horas — el dato más importante */
.cell-hours { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: -.4px; line-height: 1; }
/* Barra de progreso */
.cell-bar { height: 3px; border-radius: 2px; margin-top: 5px; background: rgba(0,0,0,.07); overflow: hidden; }
.cell-bar-fill { height: 100%; border-radius: 2px; transition: width .3s ease; }
/* Botón Avanzar — aparece al hover sobre la fila */
.cell-advance {
  display: none;
  position: absolute;
  bottom: 4px; right: 4px;
  font-size: 10px; font-weight: 600;
  background: var(--c-blue); color: #fff;
  border: none; border-radius: 4px;
  padding: 2px 6px; cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
}
.cell-advance:hover { background: #1d4ed8; }
.cell-advance.done-btn { background: transparent; color: var(--tx-muted); border: 1px solid var(--bd); }
.cell-advance.done-btn:hover { background: var(--bg-muted); }
/* Mostrar botón al hover sobre la fila completa */
.ot-row:hover .cell-advance { display: block; }

/* Cell state colors */
.cs-done  { background:#f0fdf4; border-color:#bbf7d0; }
.cs-done  .cell-status { color:#15803d; }
.cs-done  .cell-hours  { color:#16a34a; }
.cs-prog  { background:#eff6ff; border-color:#bfdbfe; }
.cs-prog  .cell-status { color:#1d4ed8; }
.cs-prog  .cell-hours  { color:#2C5EF7; }
.cs-pend  { background:#fffbeb; border-color:#fde68a; }
.cs-pend  .cell-status { color:#92400e; }
.cs-pend  .cell-hours  { color:#C97316; }
.cs-block { background:#fef2f2; border-color:#fecaca; }
.cs-block .cell-status { color:#991b1b; }
.cs-block .cell-hours  { color:#DC2626; }
.cs-queue { background:#f8f9fa; border-color:#e9eaec; }
.cs-queue .cell-status { color:#8a92a0; }
.cs-queue .cell-hours  { color:#8a92a0; }

/* Footer row */
#taller-tfoot td {
  background: #1e2433;
  color: #94a3b8;
  padding: 8px 10px;
  font-size: 11px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
#taller-tfoot td:first-child {
  text-align: left;
  color: #cbd5e1;
  font-weight: 600;
  position: sticky;
  left: 0;
}
#taller-tfoot td:last-child { border-right: none; }
.carga-val { font-family: var(--mono); font-size: 11.5px; font-weight: 600; }
.carga-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.carga-bar-fill { height: 100%; border-radius: 2px; }

/* Context menu (right-click on OT) */
.ctx-menu {
  display: none;
  position: fixed;
  background: var(--bg-white);
  border: 1px solid var(--bd);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 500;
  min-width: 190px;
  padding: 4px;
}
.ctx-menu.open { display: block; }
.ctx-item {
  padding: 7px 12px;
  font-size: 12.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: var(--tx-secondary);
}
.ctx-item:hover { background: var(--bg-muted); color: var(--tx-primary); }
.ctx-item.danger { color: var(--c-red); }
.ctx-item.success { color: var(--c-green); }
.ctx-sep { border: none; border-top: 1px solid var(--bd); margin: 3px 0; }


/* ═══ KANBAN BOARD ═══ */
#kan-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
.kan-col {
  background: var(--bg-subtle);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 12px;
  min-height: 200px;
}
.kan-card {
  background: var(--bg-white);
  border: 1px solid var(--bd);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: box-shadow .12s, transform .1s;
  box-shadow: var(--shadow);
}
.kan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.kan-card:last-child { margin-bottom: 0; }


</head>
<body>


/* ── Estilo detalle tipo Odoo ── */
.odoo-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0 14px; border-bottom: 1px solid var(--bd);
  margin-bottom: 0;
}
.odoo-breadcrumb {
  font-size: 12px; color: var(--tx-muted); display: flex; align-items: center; gap: 4px;
}
.odoo-breadcrumb .sep { color: var(--bd); }
.odoo-breadcrumb .current { color: var(--tx-primary); font-weight: 600; }
.odoo-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--bd);
  margin-bottom: 0;
}
.odoo-tab {
  padding: 10px 16px; font-size: 13px; font-weight: 500;
  color: var(--tx-muted); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  font-family: var(--font); transition: color 0.15s;
  margin-bottom: -1px;
}
.odoo-tab:hover { color: var(--tx-primary); }
.odoo-tab.active { color: var(--c-primary); border-bottom-color: var(--c-primary); font-weight: 600; }
.odoo-body {
  display: flex; gap: 24px; align-items: flex-start; padding-top: 20px;
}
.odoo-main { flex: 1; min-width: 0; }
.odoo-aside {
  width: 200px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.odoo-section-title {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--tx-muted);
  margin-bottom: 10px;
}
.odoo-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
  margin-bottom: 20px;
}
.odoo-fields.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.odoo-fields.cols-1 { grid-template-columns: 1fr; }
.odoo-field label {
  display: block; font-size: 11px; color: var(--tx-muted);
  margin-bottom: 3px; font-weight: 500;
}
.odoo-field .val {
  font-size: 13px; color: var(--tx-primary); font-weight: 500;
}
.odoo-field .val.mono { font-family: var(--mono); }
.odoo-field .val.lg { font-size: 15px; font-weight: 700; }
.odoo-divider {
  border: none; border-top: 1px solid var(--bd); margin: 16px 0;
}
.odoo-aside-section { display: flex; flex-direction: column; gap: 6px; }
.odoo-aside-label {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--tx-muted); margin-bottom: 4px;
}
.odoo-state-row {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; padding: 3px 0;
}
.odoo-state-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   MÓDULO OBRAS / GANTT
══════════════════════════════════════════════ */
.obr-card {
  background: var(--bg-white);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 16px;
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s;
}
.obr-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--tx-muted);
}
.obr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
}
#gantt-container {
  overflow-x: auto;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  background: var(--bg-white);
  font-size: 12px;
  user-select: none;
}

/* ── UX Refinements ── */

/* Topbar: separador breadcrumb más claro */
.tb-crumb-sep { color: var(--bd); font-size: 16px; margin: 0 2px; }

/* Botón ? más integrado */
#help-btn {
  width: 26px; height: 26px;
  background: none;
  border: 1px solid var(--bd);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--tx-muted);
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
  transition: border-color .15s, color .15s;
}
#help-btn:hover { border-color: var(--c-orange); color: var(--c-orange); }
#help-btn.active { border-color: var(--c-orange); color: var(--c-orange); background: var(--c-orange-bg); }

#sidebar { background: var(--sb-bg); border-right: none; }

/* sb-section-header separador top muy sutil */
.sb-section:not(:first-child) .sb-section-header {
  margin-top: 4px;
  padding-top: 14px;
}

/* Ítem activo: indicador izquierdo más refinado */
.sb-item.active {
  position: relative;
}

/* Hover state en módulos colapsado: icono en color */
#sidebar.collapsed .sb-item:hover {
  background: var(--sb-hover);
}

/* scroll del sidebar más sutil */
.sb-nav::-webkit-scrollbar { width: 3px; }
.sb-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); }

/* Stat card hover */
.stat-card {
  transition: box-shadow .15s, border-color .15s;
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
}

/* Card hover sutil */
.card {
  transition: box-shadow .12s;
}

/* Fila de tabla hover */
.erp-table tbody tr {
  transition: background .1s;
}
.erp-table tbody tr:hover {
  background: var(--bg-subtle);
}

/* Badge más contenido */
.badge {
  font-size: 10.5px;
  padding: 2px 6px;
}

/* Botones más precisos */
.btn {
  letter-spacing: -.1px;
}

/* Input focus más limpio */
.form-control:focus {
  outline: none;
  border-color: var(--bd-focus);
  box-shadow: 0 0 0 3px var(--c-primary-bg);
}

/* obr-card hover ya tiene border-color */

/* Gantt container más limpio */
#gantt-container {
  box-shadow: none;
}

/* ── Print styles ── */
@media print {
  #sidebar, #topbar, #help-drawer, .print-toolbar,
  .toast-wrap, #login-overlay, #user-menu { display: none !important; }
  .print-overlay { position: static !important; background: none !important; }
  .print-shell   { background: none !important; padding: 0 !important; }
  .print-doc     { box-shadow: none !important; padding: 20px !important; }
  body           { background: white !important; }
}

/* ── Print shell mejorado ── */
.print-shell {
  background: #e5e7eb;
  padding: 16px;
  border-radius: var(--r);
  width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.print-doc {
  background: #fff;
  padding: 44px 52px;
  font-family: 'Inter', sans-serif;
  color: #111;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
}
