/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
 
 :root {
  --accent: #0b79d0;
  --muted: #666;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  padding: 20px;
}

.tabs {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.tab-labels {
  display: flex;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.tab-labels a {
  padding: 12px 20px;
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  font-weight: 500;
}

.tab-labels a:hover {
  color: #000;
}

.tab-labels a.active {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}

.tab-content {
  padding: 20px;
  background: #fff;
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}
 
