/* UI base (sidebar, botones, overlays futuros) */

:root {
  --bg: #050816;
  --panel: rgba(10, 14, 35, 0.6);
  --text: #cbd5e1;
  --accent: #38bdf8;
}

body {
  color: var(--text);
}

/* Placeholder de UI futura */
.ui-panel {
  position: absolute;
  top: 20px;
  left: 20px;

  padding: 12px 16px;
  border-radius: 12px;

  background: var(--panel);
  backdrop-filter: blur(10px);

  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Botón base */
.ui-button {
  padding: 8px 12px;
  border-radius: 8px;

  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);

  color: var(--text);
  cursor: pointer;
}

.ui-button:hover {
  background: rgba(56, 189, 248, 0.2);
}
