/* ── Toolbar ── */
.toolbar {
  max-width: 210mm;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: #1e1e1e;
  color: #eee;
  padding: 10px 16px;
  border-radius: 7px;
  font-family: sans-serif;
  font-size: 12px;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #f59e0b; display: inline-block; flex-shrink: 0;
  transition: background 0.4s;
}
.status-dot.online { background: #22c55e; }
#roomId { color: #aaa; font-size: 11px; font-family: monospace; }
.toolbar-right { display: flex; gap: 8px; margin-left: auto; align-items: center; }
.btn-tool {
  background: transparent; color: #ccc; border: 1px solid #555;
  padding: 6px 13px; border-radius: 4px; cursor: pointer;
  font-size: 11px; font-family: sans-serif;
}
.btn-tool:hover { background: #333; color: #fff; }
.btn-primary-tool {
  background: #01696f; color: white; border: none;
  padding: 6px 16px; border-radius: 4px; cursor: pointer;
  font-size: 12px; font-family: sans-serif; font-weight: bold;
}
.btn-primary-tool:hover { background: #0c4e54; }

/* ── Setup warning banner ── */
#setupBanner {
  max-width: 210mm; margin: 0 auto 14px auto;
  background: #fef3c7; border: 1.5px solid #f59e0b;
  border-radius: 6px; padding: 12px 16px;
  font-family: sans-serif; font-size: 12px; color: #92400e;
  display: none;
}
#setupBanner a { color: #01696f; font-weight: bold; }
