/* Panel-specific styles */

.panel-header {
  font-family: var(--title);
  font-size: 18px;
  color: var(--amber);
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(251,191,36,0.3);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.panel-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 14px;
}

.panel-section h4 {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
  font-family: var(--cond);
  font-weight: 700;
}

.toggle-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.toggle-switch:last-child { border-bottom: none; }
.toggle-switch label { font-size: 12px; color: var(--text2); }
.toggle-switch input { accent-color: var(--accent); }

.led {
  width: 10px; height: 10px; border-radius: 50%;
  background: #1a3a1a; border: 1px solid #2a4a2a;
  display: inline-block;
}
.led.green { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.led.amber { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.led.red { background: var(--danger); box-shadow: 0 0 6px var(--danger); }
