/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}


.floating-now-playing.floating-collapsed.floating-right .floating-collapse-arrow {
  left: 0;
  right: auto;
  border-radius: 12px 0 0 12px;
}

.floating-now-playing.floating-collapsed.floating-left .floating-collapse-arrow {
  right: 0;
  left: auto;
}


.floating-collapse-arrow span {
  font-size: 1em;
  color: #ffffff;
  user-select: none;
}

.floating-now-playing-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.floating-artwork img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.floating-song-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-song-title {
  font-weight: bold;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.1;
}

.floating-song-artist {
  color: #eee;
  font-size: 0.95em;
}


.request-badge {
  background: #ef0a6a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.9em;
  margin-left: 8px;
}

.new-badge {
  background: #10b981;
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.9em;
  margin-left: 8px;
  display: inline-block;
  font-weight: 600;
}

.floating-vote-bar {
  margin-top: 4px;
}

.radio-dashboard {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  position: relative;
}

.radio-dashboard::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.radio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.station-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.station-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.station-logo img {
  height: 50px;
}

.station-name .accent {
  color: #ff0080;
}

.indicators {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 0, 128, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #ff0080;
  font-weight: 700;
  font-size: 0.9rem;
}


.twitch-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(132, 0, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #6441a5;
  font-weight: 700;
  font-size: 0.9rem;
}

.radio-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 217, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #419ea5;
  font-weight: 700;
  font-size: 0.9rem;
}

.youtube-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #ff0000;
  font-weight: 700;
  font-size: 0.9rem;
}

.active-users-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #00ff88;
  font-weight: 700;
  font-size: 0.9rem;
}

.users-icon {
  color: #00ff88;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff0080;
  border-radius: 50%;
  animation: blink 1s infinite;
}

.current-time {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ef0a6a;
  padding: 6px 12px;
  background: rgba(239, 10, 106, 0.05);
  border-radius: 6px;
}

/* App Layout */
.app-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 1000;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #60a5fa;
}

.logo i {
  font-size: 1.5rem;
}

.sidebar-nav {
  flex: 1;
  padding: 1.5rem 0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

.nav-item.active {
  background-color: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border-left-color: #ef0a6a;
}

.nav-item i {
  width: 20px;
  text-align: center;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
}

.pagination button {
  margin: 0 2px;
  padding: 4px 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.pagination button.active {
  background: #ef0a6a;
  color: #fff;
  font-weight: bold;
  border-color: #ef0a6a;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #60a5fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.user-role {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  background-color: #f8fafc;
}

.main-header {
  background: white;
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.page-subtitle {
  color: #64748b;
  font-size: 1rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-outline:hover {
  background: #3b82f6;
  color: white;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 2rem;
}

.tab-content.active {
  display: block;
}

/* Dashboard Grid */
.dashboard-grid {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.now-playing {
  width: 50%;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.voting-section {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.top-requested {
  width: 50%;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* KPI Cards */
.kpi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.kpi-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.kpi-card.positive .kpi-icon {
  background: #dcfce7;
  color: #16a34a;
}

.kpi-card.neutral .kpi-icon {
  background: #fef3c7;
  color: #d97706;
}

.kpi-card.negative .kpi-icon {
  background: #fee2e2;
  color: #dc2626;
}

.kpi-card.engagement .kpi-icon {
  background: #dbeafe;
  color: #2563eb;
}

.kpi-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.kpi-content p {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

.kpi-trend.up {
  background: #dcfce7;
  color: #16a34a;
}

.kpi-trend.down {
  background: #fee2e2;
  color: #dc2626;
}

.kpi-trend.stable {
  background: #f1f5f9;
  color: #64748b;
}

/* Charts Section */
.charts-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.chart-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.chart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.chart-content {
  padding: 1.5rem;
}

/* Top Performers */
.top-performers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.performer-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.performer-card h3 {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.performer-list {
  padding: 1rem;
}

.performer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background-color 0.2s ease;
}

.performer-item:hover {
  background-color: #f8fafc;
}

.performer-info {
  flex: 1;
}

.performer-name {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.performer-details {
  font-size: 0.875rem;
  color: #64748b;
}

.performer-score {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Content Header */
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.content-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.content-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box i {
  position: absolute;
  left: 1rem;
  color: #64748b;
}

.search-box input {
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  width: 300px;
  transition: border-color 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group {
  display: flex;
  gap: 0.5rem;
}

.form-select {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Data Table */
.table-container {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background: #f8fafc;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.data-table tr:hover {
  background-color: #f8fafc;
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* Song Info */
.song-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Verticaal centreren */
  align-items: flex-start; /* Links uitlijnen */
  height: 100%; /* Zorg ervoor dat het de volledige hoogte van de container gebruikt */
}

.song-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.song-artist {
  color: #64748b;
  font-size: 0.875rem;
}

/* Show Badge */
.show-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Genre Badge */
.genre-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #f3e8ff;
  color: #7c3aed;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Vote Display */
.vote-display {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.vote-count {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.vote-count.positive {
  background: #dcfce7;
  color: #16a34a;
}

.vote-count.neutral {
  background: #fef3c7;
  color: #d97706;
}

.vote-count.negative {
  background: #fee2e2;
  color: #dc2626;
}

/* Rating Stars */
.rating-stars {
  display: flex;
  gap: 0.125rem;
}

.rating-stars i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.rating-stars i.empty {
  color: #d1d5db;
}

/* Vote Actions */
.vote-actions {
  display: flex;
  gap: 0.5rem;
}

.vote-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.vote-btn.excellent {
  background: #16a34a;
  color: white;
}

.vote-btn.good {
  background: #3b82f6;
  color: white;
}

.vote-btn.average {
  background: #d97706;
  color: white;
}

.vote-btn.poor {
  background: #dc2626;
  color: white;
}

.vote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Analytics Grid */
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.analytics-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.analytics-card.full-width {
  grid-column: 1 / -1;
}

.analytics-card h3 {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.analytics-content {
  padding: 1.5rem;
}

/* Reports Grid */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.report-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.report-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.report-header {
  margin-bottom: 1rem;
}

.report-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.report-date {
  font-size: 0.875rem;
  color: #64748b;
}

.report-summary {
  margin-bottom: 1.5rem;
}

.report-summary p {
  color: #64748b;
  line-height: 1.6;
}

.report-actions {
  display: flex;
  gap: 0.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background: #f1f5f9;
}

.modal-body {
  padding: 1.5rem;
}
/* 
.song-info {
  text-align: center;
  display: flex;
  margin-bottom: 2rem;
} */

.song-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.song-info p {
  color: #64748b;
}

.vote-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Section Styling */
section {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ef0a6a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Now Playing */
.current-song {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.song-artwork {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(239, 10, 106, 0.3);
}

.song-artwork img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(239, 10, 106, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.song-details {
  flex: 1;
}

.song-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.song-artist {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.song-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.song-meta span {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.show-name {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border: 1px solid #00d4ff;
}

.genre {
  background: rgba(255, 0, 128, 0.2);
  color: #ff0080;
  border: 1px solid #ff0080;
}

.duration {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Progress Bar */
.progress-bar {
  margin-top: 1rem;
}

.progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 52%;
  background: linear-gradient(90deg, #00d4ff, #ff0080);
  border-radius: 3px;
  animation: progress 1s ease-in-out;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cccccc;
  font-family: "Orbitron", monospace;
}

/* Equalizer */
.equalizer {
  display: flex;
  gap: 3px;
  align-items: end;
  height: 20px;
}

.bar {
  width: 3px;
  background: #ef0a6a;
  border-radius: 2px;
  animation: equalizer 1.5s ease-in-out infinite;
}

.bar:nth-child(1) {
  animation-delay: 0s;
}
.bar:nth-child(2) {
  animation-delay: 0.1s;
}
.bar:nth-child(3) {
  animation-delay: 0.2s;
}
.bar:nth-child(4) {
  animation-delay: 0.3s;
}
.bar:nth-child(5) {
  animation-delay: 0.4s;
}

/* Voting Section */
.total-votes {
  font-family: "Orbitron", monospace;
  color: #cccccc;
  font-size: 0.9rem;
}

.vote-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vote-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.vote-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.vote-block:hover::before {
  left: 100%;
}

.vote-block.nice {
  border-color: #00ff88;
}

.vote-block.nice:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.vote-block.meh {
  border-color: #ffaa00;
}

.vote-block.meh:hover {
  background: rgba(255, 170, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 170, 0, 0.3);
}

.vote-block.bad {
  border-color: #ff0044;
}

.vote-block.bad:hover {
  background: rgba(255, 0, 68, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 68, 0.3);
}

.vote-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.vote-block.nice .vote-icon {
  color: #00ff88;
}
.vote-block.meh .vote-icon {
  color: #ffaa00;
}
.vote-block.bad .vote-icon {
  color: #ff0044;
}

.vote-label {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.vote-count {

  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.vote-percentage {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Vote Chart */
.vote-chart {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}

.chart-bar {
  height: 100%;
  transition: width 0.5s ease;
}

.nice-bar {
  background: #00ff88;
}
.meh-bar {
  background: #ffaa00;
}
.bad-bar {
  background: #ff0044;
}

/* Top Requested */
.period-filter {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.top-songs-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.top-song-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ef0a6a;
}

.song-rank {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 900;
  color: #ef0a6a;
  min-width: 40px;
}

.song-info {
  flex: 1;
}

.song-info h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.song-info p {
  color: #cccccc;
  font-size: 1.1rem;
}

.request-count {
  background: rgba(239, 10, 106, 0.2);
  color: #ef0a6a;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1rem;
}

.mini-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(239, 10, 106, 0.3);
}

/* Song History Table */
.table-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.showfilter-container {
  position: relative;
  height: 100%;
}

.showfilter-container span {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  color: #bbb;
  font-size: 1.1em;
  pointer-events: none;
}



.search-input,
.show-filter {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 2rem;
  color: #ffffff;
  font-size: 0.9rem;
}

/* Style voor de dropdown */
select {
  background-color: #1e293b; /* Donkere achtergrond */
  color: #ffffff; /* Witte tekst */
  font-family: 'Roboto', sans-serif; /* Consistente fontstijl */
  font-size: 1rem; /* Tekstgrootte */
  padding: 0.5rem; /* Binnenruimte */
  border: 1px solid #4b5563; /* Randkleur */
  border-radius: 5px; /* Afgeronde hoeken */
  outline: none; /* Geen standaard focusstijl */
  appearance: none; /* Verwijder standaard browserstijl */
  cursor: pointer; /* Cursor verandert naar pointer */
}

/* Style voor de opties */
select option {
  background-color: #1e293b; /* Donkere achtergrond */
  color: #ffffff; /* Witte tekst */
  padding: 0.5rem; /* Binnenruimte */
}

/* Hover-effect voor de dropdown */
select:hover {
  border-color: #ef0a6a; /* Accentkleur bij hover */
}

/* Focus-effect voor de dropdown */
select:focus {
  border-color: #ef0a6a; /* Accentkleur bij focus */
  box-shadow: 0 0 5px rgba(239, 10, 106, 0.5); /* Glow-effect */
}

.search-input {
  width: 250px;
}

.search-input::placeholder {
  color: #cccccc;
}

.table-container {
  overflow-x: auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.songs-table {
  width: 100%;
  border-collapse: collapse;
}

.songs-table th {
  background: rgba(239, 10, 106, 0.2);
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(239, 10, 106, 0.3);
}

.songs-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}

.songs-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.time-cell {
  font-family: "Orbitron", monospace;
  color: #ef0a6a;
  font-weight: 700;
}

.artist-cell {
  font-weight: 700;
}

.show-badge {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.genre-badge {
  background: rgba(255, 0, 128, 0.2);
  color: #ff0080;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.votes-cell {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.vote-mini {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vote-mini.nice {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
}

.vote-mini.meh {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
}

.vote-mini.bad {
  background: rgba(255, 0, 68, 0.2);
  color: #ff0044;
}

/* Vote Notification */
.vote-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0, 255, 136, 0.9);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.vote-notification.show {
  transform: translate(-50%, -50%) scale(1);
}

.voting-statistics {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vote-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.vote-stat {
    text-align: center;
}

.vote-label {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #ef0a6a;	
}

.vote-count {

    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.vote-percentage {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes equalizer {
  0%,
  100% {
    height: 5px;
  }
  50% {
    height: 20px;
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 52%;
  }
}

@keyframes voteSuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.vote-block.voted {
  animation: voteSuccess 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .now-playing,
  .voting-section,
  .top-requested,
  .song-history {
    grid-column: 1 / 2;
  }
  .now-playing {
  width: 50%;
  }
  .voting-section {
    grid-row: 2 / 3;
  }
  .top-requested {
      width: 50%;
  }
  .song-history {
    grid-row: 4 / 5;
  }
}

@media (max-width: 768px) {
  .station-info {
    flex-direction: column;
  }

  .indicators {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .right-indicators {
    width: 100%;
    margin: 0;
  }

  .unique-songs-indicator,
  .total-votes-indicator {
    display: none !important;
  }

  .live-indicator,
  .twitch-indicator,
  .youtube-indicator,
  .radio-indicator {
    flex: 0 1 auto; /* Don't grow or shrink, use natural size */
    min-width: auto; /* Remove minimum width */
    padding: 0.4rem 0.8rem; /* Slightly smaller padding */
    font-size: 0.8rem; /* Slightly smaller font */
    justify-content: center;
  }

  .dashboard-grid {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .now-playing,
  .top-requested {
    width: 100%;
  }

  .radio-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .current-song {
    flex-direction: column;
    text-align: center;
  }

  .vote-blocks {
    grid-template-columns: 1fr;
  }

  .table-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .search-input,
  .show-filter {
    width: 100%;
  }

  .songs-table {
    width: 100%;
    font-size: 0.8rem;
  }

  .songs-table th,
  .songs-table td {
    padding: 0.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 {
    padding-bottom: 20px;
  }

  .song-history .table-container {
    overflow-x: auto;
  }

  .stats-container {
    display: none !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.8);
}

.unique-songs-indicator,
.total-votes-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85em;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.unique-songs-indicator {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.2);
}

.total-votes-indicator {
  background: rgba(239, 10, 106, 0.1);
  color: #ef0a6a;
  border-color: rgba(239, 10, 106, 0.2);
}

.unique-songs-indicator:hover,
.total-votes-indicator:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.unique-songs-icon,
.total-votes-icon {
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.indicator-label {
  font-weight: 500;
  letter-spacing: 0.2px;
}

.indicator-value {
  font-weight: 600;
  font-size: 1em;
  min-width: 32px;
  text-align: right;
}

@media (max-width: 768px) {
  .unique-songs-indicator,
  .total-votes-indicator {
    width: 100%;
    justify-content: space-between;
    margin: 6px 0;
    padding: 8px 12px;
  }
  
  .indicator-value {
    font-size: 1.1em;
  }
}

.times-played {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  border: 1px solid #6366f1;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.times-played i {
  font-size: 0.9em;
}

.clickable-artist {
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: all 0.2s ease;
}

.clickable-artist:hover {
  color: #ff4d94;
  text-decoration: underline;
}

.clickable-artist:hover::after {
  opacity: 1;
}

/* Clickable artist style */
.clickable-artist {
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: all 0.2s ease;
}

.clickable-artist:hover {
  color: #ff4d94;
  text-decoration: underline;
}

.clickable-artist:hover::after {
  opacity: 1;
}

/* Modal overlay */
#artistModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal content box */
#artistModal .modal-box {
  background: rgba(17, 17, 17, 0.85);
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  color: #ff4d94;
  box-shadow: 0 0 20px rgba(239, 10, 106, 0.5);
  position: relative;
  animation: fadeIn 0.3s ease forwards;
}

/* Close button */
#artistModal .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #ef0a6a;
  color: rgb(180, 18, 18);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#artistModal .close-btn:hover {
  background: #d1025a;
  color: #fff;
}

/* Modal title */
#artistModal h2 {
  font-family: "Orbitron", monospace;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #ef0a6a;
}

/* Song list */
#artistModal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Song entry */
.artist-song-entry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: slideUp 0.4s ease forwards;
}

.artist-song-entry:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* Album art thumbnails */
.mini-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(239, 10, 106, 0.3);
}

/* Song title */
.modal-song-title {
  flex: 1;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

/* Times played badge */
.times-played-badge {
  background: rgba(239, 10, 106, 0.15);
  color: #ef0a6a;
  font-family: "Orbitron", monospace;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.stats-container {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.stat-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  min-width: 90px;
}

.stat-badge:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stat-badge i {
  font-size: 0.9em;
  opacity: 0.8;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
  gap: 0;
  padding-top: 2px;
}

.stat-content span {
  margin: 0;
}

.stat-badge .stat-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.stat-badge .stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.986);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stats-container {
    display: none !important;
  }
}

/* Play Time Statistics */
.play-time-stats {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-time-stats h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.play-time-stats h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.play-time-stats .stat-label {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.play-time-stats .stat-value {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.play-time-chart, .artist-chart {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  height: 300px;
}

.artist-stats h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.artist-stats-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artist-period-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.period-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.period-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.period-btn.active {
  background: #ef0a6a;
  border-color: #ef0a6a;
}

#artistStatsList {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.artist-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-stat-item:last-child {
  border-bottom: none;
}

.artist-stat-name {
  color: #ffffff;
  font-weight: 500;
}

.artist-stat-count {
  color: #ef0a6a;
  font-weight: 600;
}

/* Current Song Statistics */
.current-song-stats {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-song-stats h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.play-time-chart, .artist-chart {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  height: 300px;
}

.artist-stats h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.artist-stats-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artist-period-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.period-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.period-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.period-btn.active {
  background: #ef0a6a;
  border-color: #ef0a6a;
}

#artistStatsList {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.artist-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-stat-item:last-child {
  border-bottom: none;
}

.artist-stat-name {
  color: #ffffff;
  font-weight: 500;
}

.artist-stat-count {
  color: #ef0a6a;
  font-weight: 600;
}

/* Song Statistics */
.song-stats {
  background: rgba(0, 0, 0, 0.3);
  margin-top: 0 !important;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.play-time-chart {
  width: 100%;
  height: 300px;
  color: #ffffff;
}

/* Hide playtime chart on mobile */
@media screen and (max-width: 768px) {
  .play-time-chart {
    display: none;
  }
  
  .song-stats {
    padding: 1.5rem;
  }
}

/* Chart.js specific styles */
.song-stats canvas {
  color: #ffffff;
}

.song-stats .chartjs-legend {
  color: #ffffff;
}

.song-stats .chartjs-axis-label {
  color: #ffffff;
}

.song-stats .chartjs-tooltip {
  color: #ffffff;
}

/* Override Chart.js default styles */
.song-stats .chartjs-render-monitor {
  color: #ffffff;
}

.song-stats .chartjs-axis {
  color: #ffffff;
}

.song-stats .chartjs-axis-label,
.song-stats .chartjs-legend-item,
.song-stats .chartjs-tooltip {
  color: #ffffff !important;
}

/* Override any Chart.js specific elements */
.song-stats .chartjs-axis-label,
.song-stats .chartjs-legend-item,
.song-stats .chartjs-tooltip,
.song-stats .chartjs-axis,
.song-stats .chartjs-legend,
.song-stats .chartjs-render-monitor {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* Ensure all text in the chart container is white */
.song-stats .play-time-chart * {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* Override any remaining Chart.js styles */
.song-stats .chartjs-axis-label,
.song-stats .chartjs-legend-item,
.song-stats .chartjs-tooltip,
.song-stats .chartjs-axis,
.song-stats .chartjs-legend,
.song-stats .chartjs-render-monitor,
.song-stats .chartjs-axis-label,
.song-stats .chartjs-legend-item,
.song-stats .chartjs-tooltip,
.song-stats .chartjs-axis,
.song-stats .chartjs-legend,
.song-stats .chartjs-render-monitor,
.song-stats .play-time-chart * {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}