/* Mode Switcher */
.mode-switcher {
  display: flex;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 25px;
}

.mode-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.mode-btn.active {
  background: rgba(255,255,255,0.1);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Local Dashboard Specifics */
.disruption-card {
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}

.disruption-card h3 {
  color: var(--accent-gold);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
}

.disruption-desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 20px;
}

.countdown-box {
  background: rgba(0,0,0,0.4);
  padding: 15px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.countdown-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.countdown-timer {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

/* Util */
.hidden { display: none !important; }
