/* === Dashboard Widgets === */
.widget-content {
  font-size: 13px;
}

/* Now Playing Widget */
.widget-now-playing {
  display: flex;
  align-items: center;
  gap: 16px;
}

.now-playing-art {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  overflow: hidden;
}

.now-playing-art img { width: 100%; height: 100%; object-fit: cover; }

.now-playing-info { flex: 1; }
.now-playing-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.now-playing-artist { font-size: 15px; color: var(--text-muted); }
.now-playing-album { font-size: 13px; color: var(--text-dim); margin-top: 2px; }

/* Listener Count Widget */
.widget-listener-count {
  text-align: center;
  padding: 12px;
}

.listener-big-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.listener-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Schedule Widget */
.schedule-list { list-style: none; }

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.schedule-item:last-child { border-bottom: none; }

.schedule-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  min-width: 90px;
}

.schedule-show-title { font-weight: 500; }
.schedule-dj { font-size: 12px; color: var(--text-muted); }

.schedule-day-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Song History Widget */
.song-list { list-style: none; }

.song-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.song-item:last-child { border-bottom: none; }

.song-art {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.song-info { flex: 1; }
.song-title-row { font-weight: 500; }
.song-artist-row { font-size: 12px; color: var(--text-muted); }
.song-time { font-size: 11px; color: var(--text-dim); }

/* Requests Widget */
.request-list { list-style: none; }

.request-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.request-item:last-child { border-bottom: none; }

.request-info { flex: 1; }
.request-song { font-weight: 500; }
.request-by { font-size: 12px; color: var(--text-muted); }
.request-message { font-size: 12px; color: var(--text-dim); font-style: italic; margin-top: 4px; }

.request-actions { display: flex; gap: 4px; }

/* DJ List Widget */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.dj-card {
  text-align: center;
  padding: 16px 8px;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.dj-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 8px;
}

.dj-name { font-size: 13px; font-weight: 600; }

/* Player Widget */
.widget-player {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-controls { display: flex; gap: 8px; }
.player-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-btn:hover { background: var(--primary-hover); }

.player-volume { flex: 1; }
.player-volume input[type="range"] { width: 100%; }

/* Clock Widget */
.widget-clock {
  text-align: center;
}
.clock-time { font-size: 36px; font-weight: 700; font-variant-numeric: tabular-nums; }
.clock-date { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Quick Stats */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-stat {
  text-align: center;
  padding: 8px;
}

.quick-stat-value { font-size: 22px; font-weight: 700; }
.quick-stat-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; }
