/* ====== Paleta ====== */
:root{
  --terra-primary: #ed5b33;  /* color principal */
  --terra-bg: #0b0f14;
  --terra-panel: #0f161d;
  --terra-border: #1f2a35;
  --terra-text: #e6f0ff;
  --terra-muted: #c9d6e2;
}

/* Fondo y textos */
html, body, .kiwi-app { background: var(--terra-bg) !important; color: var(--terra-text) !important; }

/* Barras / headers */
.app__header, .header, header, .toolbar, .nav, .kiwi-header, .kiwi-toolbar {
  background: var(--terra-primary) !important;
  color: #ffffff !important;
}
.app__header a, .nav a, .toolbar a { color:#ffffff !important; }

/* Paneles */
.buffer, .userlist, .panel, [class*="buffer"] { background: var(--terra-panel) !important; }
.userlist { border-left: 1px solid var(--terra-border) !important; }

/* Inputs */
input, select, textarea {
  background:#121a22 !important; color:var(--terra-text) !important;
  border:1px solid var(--terra-border) !important; border-radius:12px !important; padding:10px 12px !important;
}
label { color: var(--terra-muted) !important; }

/* Botones */
button, .btn, .kiwi-button, .kiwi-primary-btn {
  background: var(--terra-primary) !important; color:#fff !important; border:0 !important;
  border-radius:16px !important; padding:10px 16px !important; font-weight:700 !important;
}
button:hover, .btn:hover, .kiwi-button:hover { filter: brightness(1.05); }

/* Lista usuarios extra (izquierda) */
.terra-leftusers{
  margin: 10px; background: #0d1319; border: 1px solid var(--terra-border);
  border-radius: 12px; overflow: hidden;
}
.terra-leftusers__header{
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 10px; font-weight:700; color:#fff; background:#0f171e;
  border-bottom:1px solid var(--terra-border);
}
.terra-leftusers__list{ max-height: 260px; overflow:auto; padding:6px 6px 8px 6px; }
.terra-leftusers__item{
  display:flex; align-items:center; gap:8px;
  padding:6px 8px; border-radius:8px; color:#dfe8f2;
}
.terra-leftusers__item:hover{ background:#0f171e; }
.terra-dot{ width:8px; height:8px; border-radius:999px; background:#39d353; display:inline-block; }

