/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bg:        #0b0b0c;
  --s1:        #111111;
  --s2:        #181818;
  --s3:        #202020;
  --border:    #242424;
  --text:      #F4F2EE;
  --muted:     #5a5a5a;
  --accent:    #FF6A1F;
  --accent-h:  #ff8848;
  --ok:        #4caf87;
  --warn:      #d4a341;
  --danger:    #e05555;
  --sidebar-w: 220px;
  --r:         9px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
a { color: var(--accent); text-decoration: none; }
.hidden { display: none !important; }

/* ============================================================
   GATE
   ============================================================ */
#gate {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: radial-gradient(ellipse 80% 50% at 50% 40%, #161616 0%, var(--bg) 100%);
}
.gate-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.gate-logo { height: 36px; width: auto; margin-bottom: 24px; }
.gate-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 28px; letter-spacing: 0.03em; }
.gate-form { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.gate-input {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 4px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.gate-input::placeholder { letter-spacing: 0; color: var(--muted); }
.gate-input:focus { border-color: var(--accent); }
.gate-input.shake { animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both; border-color: var(--danger); }
@keyframes shake { 10%,90%{transform:translate3d(-2px,0,0)} 20%,80%{transform:translate3d(4px,0,0)} 30%,50%,70%{transform:translate3d(-4px,0,0)} 40%,60%{transform:translate3d(4px,0,0)} }
.gate-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 11px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.15s;
}
.gate-btn:hover { background: var(--accent-h); }

/* ============================================================
   APP LAYOUT
   ============================================================ */
#app { display: grid; grid-template-columns: var(--sidebar-w) 1fr; height: 100vh; }

/* ============================================================
   SIDEBAR
   ============================================================ */
#sidebar {
  background: #070708;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-mark { height: 24px; width: auto; }
.sidebar-brand { font-size: 0.88rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.sidebar-sub { font-size: 0.58rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1px; }
.sidebar-nav { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 1px; overflow-y: auto; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  position: relative;
}
.nav-item:hover { background: var(--s2); color: var(--text); }
.nav-item.active { background: var(--s1); color: var(--text); }
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 14px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-icon { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.6; }
.nav-item.active .nav-icon, .nav-item:hover .nav-icon { opacity: 1; }
.sidebar-footer { padding: 6px 8px 14px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1px; }
.btn-logout {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 7px;
  color: var(--muted); font-size: 0.78rem;
  cursor: pointer; transition: color 0.12s, background 0.12s;
  border: none; background: none; width: 100%; margin-top: 4px;
}
.btn-logout:hover { color: var(--danger); background: #e0555510; }

/* ============================================================
   MAIN
   ============================================================ */
#main { overflow-y: auto; background: var(--bg); }
.tab-content { display: none; padding: 28px 36px; min-height: 100%; }
.tab-content.active { display: block; }
.tab-pipeline-content { padding: 28px 24px; }

/* ============================================================
   COMMON
   ============================================================ */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.page-title { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.btn-primary { background: var(--accent); color: #fff; border: none; border-radius: 7px; padding: 8px 18px; font-size: 0.8rem; font-weight: 700; transition: background 0.15s; cursor: pointer; }
.btn-primary:hover { background: var(--accent-h); }
.btn-secondary { background: var(--s2); color: var(--text); border: 1px solid var(--border); border-radius: 7px; padding: 8px 18px; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: background 0.12s; }
.btn-secondary:hover { background: var(--s3); }
.btn-danger { background: transparent; color: var(--danger); border: 1px solid var(--danger)55; border-radius: 7px; padding: 8px 18px; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: background 0.12s; }
.btn-danger:hover { background: var(--danger)12; }
.badge { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.02em; }
.sec-title { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }

/* ============================================================
   SALUD BADGE
   ============================================================ */
.salud { font-size: 1rem; line-height: 1; }
.salud-label { font-size: 0.68rem; font-weight: 600; }

/* ============================================================
   DASHBOARD — LÍNEA COMPACTA
   ============================================================ */
.dash-linea {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}
.dash-linea-item { display: flex; align-items: center; gap: 6px; }
.dash-linea-val { font-weight: 700; color: var(--text); }
.dash-linea-lbl { color: var(--muted); }
.dash-linea-sep { color: var(--border); }

/* ============================================================
   DASHBOARD — WIDGET ATENCIÓN
   ============================================================ */
.atencion-widget {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 24px;
  overflow: hidden;
}
.atencion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--s2);
}
.atencion-title { font-size: 0.88rem; font-weight: 700; }
.atencion-count {
  background: var(--accent)22;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}

.atencion-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.atencion-table thead { background: var(--s2); }
.atencion-table th {
  padding: 9px 14px;
  text-align: left;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.atencion-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.08s; }
.atencion-table tbody tr:last-child { border-bottom: none; }
.atencion-table tbody tr:hover { background: var(--s2); }
.atencion-table td { padding: 10px 14px; vertical-align: middle; }
.atencion-rank { font-size: 0.68rem; color: var(--muted); width: 28px; text-align: center; }
.atencion-cliente { font-weight: 600; }
.atencion-titulo { font-size: 0.78rem; color: var(--muted); margin-top: 1px; }
.atencion-dias { font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.atencion-btn { background: var(--s3); color: var(--text); border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 0.72rem; font-weight: 600; cursor: pointer; transition: background 0.12s, border-color 0.12s; white-space: nowrap; }
.atencion-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.empty-atencion { text-align: center; padding: 32px; color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   DASHBOARD — KPIs
   ============================================================ */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 20px; }
.kpi-card { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; }
.kpi-val { font-size: 1.8rem; font-weight: 700; line-height: 1; margin-bottom: 5px; }
.kpi-val.sm { font-size: 1.3rem; }
.kpi-lbl { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }

/* ============================================================
   DASHBOARD — EMBUDO / ACTIVIDAD
   ============================================================ */
.dash-row3 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.widget-box { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; }
.widget-box h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.embudo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.78rem; }
.embudo-lbl { min-width: 120px; color: var(--text); }
.embudo-bar-wrap { flex: 1; background: var(--s2); border-radius: 4px; height: 6px; overflow: hidden; }
.embudo-bar { height: 6px; border-radius: 4px; background: var(--accent); transition: width 0.3s; }
.embudo-meta { min-width: 90px; text-align: right; font-size: 0.7rem; color: var(--muted); }
.act-item { display: flex; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.act-item:last-child { border-bottom: none; }
.act-fecha { color: var(--muted); min-width: 80px; }
.act-desc { flex: 1; color: var(--text); }

/* ============================================================
   PROYECTOS — TABLA
   ============================================================ */
.table-controls { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.search-input {
  flex: 1; min-width: 180px;
  background: var(--s1); border: 1px solid var(--border); border-radius: 7px;
  padding: 8px 12px; color: var(--text); font-size: 0.82rem; outline: none;
  transition: border-color 0.18s;
}
.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--muted); }
.filter-select {
  background: var(--s1); border: 1px solid var(--border); border-radius: 7px;
  padding: 8px 10px; color: var(--text); font-size: 0.78rem; outline: none; cursor: pointer;
}
.table-wrap { border-radius: var(--r); border: 1px solid var(--border); overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.data-table thead { background: var(--s1); border-bottom: 1px solid var(--border); }
.data-table th { padding: 10px 14px; text-align: left; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); cursor: pointer; white-space: nowrap; user-select: none; }
.data-table th:hover, .data-table th.sort-active { color: var(--text); }
.data-table tbody tr { border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.07s; }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--s1); }
.data-table td { padding: 10px 14px; vertical-align: middle; }
.cell-folio { font-size: 0.68rem; color: var(--muted); font-family: monospace; white-space: nowrap; }
.cell-muted { color: var(--muted); }
.cell-r { text-align: right; }
.cell-trunc { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.empty-row { text-align: center; color: var(--muted); padding: 36px; cursor: default; }

.prior-badge { display: inline-flex; padding: 1px 7px; border-radius: 4px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; }
.prior-alta   { background: #e0555520; color: #e05555; }
.prior-media  { background: #d4a34120; color: #d4a341; }
.prior-baja   { background: #4caf8720; color: #4caf87; }

/* ============================================================
   PIPELINE — KANBAN
   ============================================================ */
.kanban-board { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 16px; min-height: calc(100vh - 120px); align-items: flex-start; }
.kanban-col { min-width: 210px; width: 210px; flex-shrink: 0; background: var(--s1); border-radius: var(--r); border-top: 2px solid transparent; display: flex; flex-direction: column; max-height: calc(100vh - 140px); }
.kanban-col.drag-over { box-shadow: 0 0 0 2px var(--accent); }
.kanban-col-header { padding: 10px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.kanban-col-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; display: block; margin-bottom: 2px; }
.kanban-col-meta { font-size: 0.7rem; color: var(--muted); }
.kanban-col-monto { color: var(--warn); font-weight: 600; }
.kanban-cards { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
.kanban-card { background: var(--s2); border: 1px solid var(--border); border-radius: 7px; padding: 10px 12px; cursor: grab; user-select: none; transition: background 0.1s, box-shadow 0.12s; }
.kanban-card:hover { background: var(--s3); box-shadow: 0 4px 14px rgba(0,0,0,0.35); }
.kanban-card:active { cursor: grabbing; }
.kanban-card.dragging { opacity: 0.4; }
.kcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.kcard-folio { font-size: 0.62rem; color: var(--muted); font-family: monospace; }
.kcard-salud { font-size: 0.78rem; }
.kcard-cliente { font-weight: 600; font-size: 0.82rem; margin-bottom: 3px; }
.kcard-titulo { font-size: 0.7rem; color: var(--muted); line-height: 1.3; margin-bottom: 8px; }
.kcard-footer { display: flex; align-items: center; justify-content: space-between; }
.kcard-monto { font-size: 0.7rem; color: var(--warn); font-weight: 600; }
.kcard-btn { background: none; border: none; color: var(--muted); font-size: 0.68rem; cursor: pointer; padding: 2px 6px; border-radius: 4px; transition: background 0.1s, color 0.1s; }
.kcard-btn:hover { background: var(--accent); color: #fff; }

/* ============================================================
   SEGUIMIENTOS
   ============================================================ */
.seg-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.seg-chip { background: var(--s1); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: background 0.1s, border-color 0.1s, color 0.1s; color: var(--muted); }
.seg-chip:hover { border-color: var(--accent); color: var(--text); }
.seg-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.seg-chip.vencido-active { background: var(--danger); border-color: var(--danger); color: #fff; }
.seg-sep { color: var(--border); margin: 0 4px; }

/* ============================================================
   COTIZACIONES
   ============================================================ */
.cot-list { display: flex; flex-direction: column; gap: 8px; }
.cot-item {
  display: grid;
  grid-template-columns: 110px 1fr 60px 100px 120px 100px 120px;
  align-items: center;
  gap: 12px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.1s;
  font-size: 0.82rem;
}
.cot-item:hover { background: var(--s2); }
.cot-folio { font-family: monospace; font-size: 0.7rem; color: var(--muted); }
.cot-titulo { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cot-version { font-size: 0.7rem; font-weight: 700; color: var(--muted); background: var(--s2); padding: 1px 6px; border-radius: 4px; text-align: center; }
.cot-monto { font-weight: 700; color: var(--warn); text-align: right; }
.cot-fecha { color: var(--muted); font-size: 0.75rem; }
.cot-header { display: grid; grid-template-columns: 110px 1fr 60px 100px 120px 100px 120px; gap: 12px; padding: 7px 16px; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }

/* ============================================================
   CLIENTES
   ============================================================ */
/* Uses data-table */

/* ============================================================
   REPORTES
   ============================================================ */
.reportes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reporte-box { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; }
.reporte-box h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 16px; }
.rep-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.78rem; }
.rep-lbl { min-width: 110px; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rep-bar-wrap { flex: 1; background: var(--s2); border-radius: 4px; height: 5px; overflow: hidden; }
.rep-bar { height: 5px; border-radius: 4px; transition: width 0.3s; }
.rep-val { min-width: 80px; text-align: right; font-size: 0.7rem; color: var(--muted); }
.rep-empty { color: var(--muted); font-size: 0.82rem; text-align: center; padding: 20px 0; }

.motivo-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.motivo-row:last-child { border-bottom: none; }
.motivo-count { background: var(--s2); padding: 1px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; color: var(--muted); }

/* ============================================================
   CONFIGURACIÓN
   ============================================================ */
.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; }
.config-box { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.config-box h2 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.config-box p { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.config-box textarea {
  width: 100%; background: var(--s2); border: 1px solid var(--border);
  border-radius: 7px; padding: 10px 12px; color: var(--text);
  font-size: 0.8rem; font-family: monospace; line-height: 1.6;
  outline: none; resize: vertical; min-height: 140px;
  transition: border-color 0.18s;
}
.config-box textarea:focus { border-color: var(--accent); }
.config-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.config-danger { border-color: var(--danger)30; }
.config-danger h2 { color: var(--danger); }

/* ============================================================
   MODAL
   ============================================================ */
#modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 1000; backdrop-filter: blur(3px); }
#modal-overlay.hidden { display: none !important; }
body.modal-open { overflow: hidden; }
#modal { background: var(--s1); border: 1px solid #2c2c2c; border-radius: 14px; width: min(700px, 96vw); max-height: 92vh; display: flex; flex-direction: column; box-shadow: 0 24px 80px rgba(0,0,0,0.65); animation: modal-in 0.16s ease-out; }
@keyframes modal-in { from { opacity: 0; transform: scale(0.97) translateY(6px); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.modal-header h3 { font-size: 0.92rem; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: calc(100% - 40px); }
#modal-close { background: none; border: none; color: var(--muted); font-size: 1rem; cursor: pointer; padding: 4px 7px; border-radius: 5px; flex-shrink: 0; }
#modal-close:hover { color: var(--text); background: var(--s2); }
#modal-body { overflow-y: auto; padding: 22px; flex: 1; }
.modal-badge { display: inline-flex; padding: 3px 12px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field.f-full { grid-column: 1 / -1; }
.field.f-check { flex-direction: row; align-items: center; gap: 7px; }
.field label, .f-lbl { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.field span { font-size: 0.82rem; line-height: 1.4; }
.field input, .field select, .field textarea {
  background: var(--s2); border: 1px solid var(--border); border-radius: 7px;
  padding: 8px 11px; color: var(--text); font-size: 0.82rem; outline: none;
  transition: border-color 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input[readonly] { opacity: 0.4; cursor: not-allowed; }
.field textarea { resize: vertical; min-height: 72px; }
.field select { cursor: pointer; }
.notas-text { font-size: 0.78rem; color: var(--muted); line-height: 1.6; white-space: pre-wrap; padding: 9px 11px; background: var(--s2); border-radius: 7px; margin-top: 3px; }
.modal-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; margin-top: 16px; border-top: 1px solid var(--border); flex-shrink: 0; }
.footer-right { display: flex; gap: 8px; align-items: center; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #333; }
