/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #25D366;
  --green-dark: #128C7E;
  --sidebar-bg: #1C2B33;
  --sidebar-w:  240px;
  --bg:         #F0F2F5;
  --card-bg:    #ffffff;
  --text:       #111B21;
  --text-muted: #667781;
  --border:     #e9edef;
  --radius:     10px;
  --shadow:     0 1px 3px rgba(0,0,0,.12);
  --red:        #e53935;
  --yellow:     #f9a825;
}

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); height: 100vh; overflow: hidden; }

/* ── Layout ───────────────────────────────────────────────── */
.layout { display: flex; height: 100vh; }

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  color: #fff;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 20px 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-links { list-style: none; padding: 12px 0; flex: 1; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
  position: relative;
}
.nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-link.active { background: rgba(37,211,102,.12); color: var(--green); }
.nav-link .badge {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  min-width: 20px;
  text-align: center;
}

.sidebar-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.07); }

.wa-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  width: fit-content;
}
.wa-disconnected { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.wa-connecting   { background: rgba(249,168,37,.15);  color: var(--yellow); }
.wa-qr           { background: rgba(249,168,37,.15);  color: var(--yellow); }
.wa-connected    { background: rgba(37,211,102,.15);  color: var(--green); }

.wa-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.wa-connecting .wa-dot, .wa-qr .wa-dot { animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.wa-account-name { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 6px; }

/* ── Content area ─────────────────────────────────────────── */
.content { flex: 1; overflow-y: auto; padding: 28px; }

/* ── Page header ──────────────────────────────────────────── */
.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 22px; font-weight: 700; }
.page-header p  { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
}
.card-title { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }

/* ── Stats row ────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 16px; margin-bottom: 20px; }
.stat-card { background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.dash-section-title { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin: 8px 0 10px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-primary  { background: var(--green);  color: #fff; }
.btn-primary:hover:not(:disabled)  { background: var(--green-dark); }
.btn-danger   { background: var(--red);    color: #fff; }
.btn-danger:hover:not(:disabled)   { opacity: .85; }
.btn-outline  { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover:not(:disabled)  { background: var(--bg); }
.btn-sm { padding: 6px 12px; font-size: 13px; }

/* ── Form controls ────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
input[type=text], input[type=search], input[type=tel], input[type=email], input[type=url], input[type=number], input[type=password], select, textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 100px; font-family: inherit; }

/* ── Table ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th { text-align: left; padding: 10px 12px; color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; border-bottom: 2px solid var(--border); background: var(--bg); }
tbody td { padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:hover { background: #fafafa; }
tbody tr.selected { background: rgba(37,211,102,.06); }

/* ── Icon buttons (table actions) ────────────────────────── */
.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 3px 5px;
  border-radius: 5px;
  opacity: .55;
  vertical-align: middle;
  transition: opacity .15s, background .15s;
  line-height: 1;
}
.btn-icon:hover { opacity: 1; background: var(--border); }
.btn-icon-del:hover { background: rgba(229,57,53,.1); }

/* ── Filters bar ──────────────────────────────────────────── */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; align-items: flex-end; }
.filters .form-group { margin: 0; min-width: 160px; }

/* ── Chips / tags ─────────────────────────────────────────── */
.chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.chip-green  { background: rgba(37,211,102,.15); color: #128C7E; }
.chip-yellow { background: rgba(249,168,37,.15);  color: #e65100; }
.chip-red    { background: rgba(229,57,53,.12);   color: var(--red); }
.chip-gray   { background: var(--bg);             color: var(--text-muted); }

/* ── QR container ─────────────────────────────────────────── */
.qr-wrap { text-align: center; padding: 24px 0; }
.qr-wrap img { border-radius: 12px; border: 4px solid var(--border); }
.qr-wrap p   { margin-top: 14px; color: var(--text-muted); font-size: 14px; }

/* ── Connection card (dashboard) ──────────────────────────── */
.connect-card { max-width: 400px; }

/* ── Log / progress ───────────────────────────────────────── */
.log-box {
  background: #0d1117;
  border-radius: var(--radius);
  padding: 16px;
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12px;
  max-height: 340px;
  overflow-y: auto;
  line-height: 1.7;
}
.log-success { color: #3fb950; }
.log-error   { color: #f85149; }
.log-info    { color: #58a6ff; }
.log-wait    { color: #d29922; }

/* ── Progress bar ─────────────────────────────────────────── */
.progress-bar-wrap { background: var(--border); border-radius: 6px; height: 8px; margin: 12px 0; overflow: hidden; }
.progress-bar { height: 100%; background: var(--green); border-radius: 6px; transition: width .3s; }

/* ── Campaign preview ─────────────────────────────────────── */
.preview-bubble {
  background: #dcf8c6;
  border-radius: 10px 10px 0 10px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 360px;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

/* ── Two-col layout ───────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ── Selected contacts list ───────────────────────────────── */
.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  margin: 3px;
}
.contact-tag button { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 14px; line-height: 1; padding: 0 2px; }
.contact-tag button:hover { color: var(--red); }

/* ── Toolbar ──────────────────────────────────────────────── */
.toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }

/* ── Empty state ──────────────────────────────────────────── */
.empty { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.empty svg { opacity: .3; margin-bottom: 12px; }
.empty p { font-size: 15px; }

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn .15s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.modal {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  width: min(860px, 94vw);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  animation: slideUp .18s ease;
}
@keyframes slideUp { from{transform:translateY(16px);opacity:0} to{transform:none;opacity:1} }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 { font-size: 17px; font-weight: 700; }
.modal-header .modal-meta { font-size: 13px; color: var(--text-muted); margin-top: 3px; }

.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .12s;
}
.modal-close:hover { background: var(--bg); color: var(--text); }

.modal-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
}
.modal-stats {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 13px;
}


/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Mapa de municipios ───────────────────────────────────── */
#map-container {
  height: 320px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  z-index: 0;
}

#map-chips-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 36px;
  padding: 8px 0 2px;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37,211,102,.15);
  color: var(--green-dark);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 20px;
  padding: 4px 10px 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.map-chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1;
  padding: 0;
  opacity: .7;
  transition: opacity .12s;
}
.map-chip-remove:hover { opacity: 1; color: var(--red); }

/* ── Chips de sectores ────────────────────────────────────── */
.sector-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0;
}

.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--text-muted);
  transition: background .13s, color .13s, border-color .13s;
  user-select: none;
}
.sector-chip:hover { border-color: var(--green); color: var(--text); }
.sector-chip-active {
  background: rgba(37,211,102,.15);
  border-color: var(--green);
  color: var(--green-dark);
}

/* ── Estimación de tiempo ─────────────────────────────────── */
#time-estimate {
  background: rgba(37,211,102,.08);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}
#time-estimate strong { color: var(--green-dark); }
#time-estimate.hidden { display: none; }

/* ── Layout prospección ───────────────────────────────────── */
.prosp-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}
.prosp-left  { display: flex; flex-direction: column; gap: 0; }
.prosp-right { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 900px) {
  .prosp-layout { grid-template-columns: 1fr; }
}

/* ── Map compacto en config ───────────────────────────────── */
.prosp-left #map-container { height: 240px; }

/* ── Job history rows ─────────────────────────────────────── */
.job-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--hover); }
.job-row-main {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.job-status-dot { font-size: 13px; font-weight: 700; flex-shrink: 0; }
.job-name { font-size: 13px; font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-meta { font-size: 11px; color: var(--text-muted); flex-shrink: 0; }
.job-row-stats {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  padding-left: 18px;
}
.job-row-actions {
  display: flex;
  gap: 5px;
  padding-left: 18px;
  align-items: center;
}
.btn-job-delete {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1;
  padding: 0 2px;
  opacity: .5;
  transition: opacity .12s, color .12s;
  margin-left: 2px;
}
.btn-job-delete:hover { opacity: 1; color: var(--red); }

/* ── Prospects table: no-scroll layout ───────────────────────── */
#prospects-body td,
#prospects-body th {
  overflow: hidden;
}
/* Celdas con max-width:0 colapsan correctamente con table-layout:fixed */
.table-wrap table {
  table-layout: fixed;
}

/* ── Send tabs (WA / Email) ──────────────────────────────────── */
.send-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-bottom: -2px;
}
.send-tab:hover { color: var(--text); }
.send-tab-active { color: var(--text) !important; border-bottom-color: var(--green) !important; }

/* ── Analytics chips en campañas ─────────────────────────────── */
.stat-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.stat-chip { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.stat-chip-green  { background: rgba(37,211,102,.1);  color: #128C7E; border-color: rgba(37,211,102,.25); }
.stat-chip-red    { background: rgba(229,57,53,.08);  color: var(--red); border-color: rgba(229,57,53,.2); }
.stat-chip-yellow { background: rgba(249,168,37,.1);  color: #e65100; border-color: rgba(249,168,37,.25); }
.stat-chip-blue   { background: rgba(66,153,225,.1);  color: #2b6cb0; border-color: rgba(66,153,225,.25); }

/* ── Secciones de canal en modal detalle ─────────────────────── */
.detail-section { margin-bottom: 24px; }
.detail-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 0 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.detail-section .table-wrap { border-radius: 0; box-shadow: none; border: 1px solid var(--border); border-top: none; }

/* ── Modal body & footer ─────────────────────────────────────── */
.modal-body { overflow-y: auto; flex: 1; padding: 0; }
.modal-body table { min-width: 520px; }
.modal-body thead th { position: sticky; top: 0; background: var(--bg); z-index: 1; }

/* Contenido sin scroll (formularios pequeños) */
.modal-form { padding: 22px; overflow-y: auto; }

/* Footer de acciones en modales */
.modal-footer {
  display: flex;
  gap: 8px;
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 0 0 14px 14px;
  flex-shrink: 0;
}

/* ── Historial de campañas ───────────────────────────────────── */
.campaign-history-row {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.campaign-history-row:last-child { border-bottom: none; }

.engagement-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.engagement-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #25d366);
  border-radius: 2px;
  transition: width .4s ease;
}

/* ── Plantillas modal ────────────────────────────────────────── */
.tmpl-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.tmpl-row:last-child { border-bottom: none; }
.tmpl-info { flex: 1; min-width: 0; }
.tmpl-name { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.tmpl-subject { font-size: 11px; color: var(--green-dark); margin-bottom: 2px; }
.tmpl-preview { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tmpl-empty { color: var(--text-muted); font-size: 13px; padding: 16px 0; }

/* ── Toast notifications ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #1a1a2e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
}
.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-error { background: var(--red); }

.session-user {
  margin-top: 10px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.btn-logout {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.btn-logout:hover {
  background: rgba(255,255,255,.08);
}

.login-wrap {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: min(420px, 92vw);
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  padding: 24px;
}

.settings-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.settings-tab {
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
}

.settings-tab.active {
  color: var(--text);
  border-bottom-color: var(--green);
}

.settings-panel { display: none; }
.settings-panel.active { display: block; }

.month-group-title {
  margin: 16px 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.summary-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.db-admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
}

.db-sidebar {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: #fafbfd;
  max-height: 72vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.db-tables-list {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 2px;
}

.db-table-item {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  transition: border-color .12s, background .12s;
}

.db-table-item:hover {
  border-color: var(--green);
}

.db-table-item.active {
  border-color: var(--green);
  background: rgba(37,211,102,.08);
}

.db-table-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.db-main {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  min-height: 360px;
}

.db-main-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.db-selected-table {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.db-schema-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.db-table-wrap table {
  table-layout: auto;
}

.db-table-wrap td {
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.db-page-info {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .db-admin-layout {
    grid-template-columns: 1fr;
  }
  .db-sidebar {
    max-height: none;
  }
}
