/* YouTube Monitor — additional styles (reuses .mon-* from monitor.css) */

/* Quota bar */
.yt-quota-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.yt-quota-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.yt-quota-label b {
  color: var(--text-primary);
}
.yt-quota-track {
  height: 6px;
  background: var(--bg-hover);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.yt-quota-fill {
  height: 100%;
  background: #4caf50;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.yt-quota-fill.warning {
  background: #ff9800;
}
.yt-quota-fill.danger {
  background: #f44336;
}
.yt-quota-detail {
  font-size: 11px;
  color: var(--text-muted);
}

/* YT-specific card styling */
.mon-live-card.yt-card {
  border-left: 3px solid #ff0000;
}
.yt-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff0000;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}
.yt-avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 20px;
  background: #ff0000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.yt-ext-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 0 4px;
}
.yt-ext-link:hover {
  color: #ff0000;
}

/* Game card active state for YT filter */
.mon-game-card.active {
  border-color: #ff0000;
  box-shadow: 0 0 0 1px #ff0000;
}
