/* Track Slayer Voting Styles */

/* ==================== Session Management Voting Section ==================== */

.voting-style-section {
  margin-top: 16px;
}

.voting-styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.voting-style-option {
  cursor: pointer;
}

.voting-style-option input[type="radio"] {
  display: none;
}

.voting-style-card {
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}

.voting-style-option input:checked + .voting-style-card {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.voting-style-option:hover .voting-style-card {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
}

.voting-style-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.voting-style-icon {
  font-size: 24px;
}

.voting-style-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.voting-style-preview {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.vote-grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.vote-grade.vote-S { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1a1a1a; }
.vote-grade.vote-A { background: linear-gradient(135deg, #a78bfa, #8b5cf6); color: white; }
.vote-grade.vote-B { background: linear-gradient(135deg, #34d399, #10b981); color: white; }
.vote-grade.vote-D { background: linear-gradient(135deg, #60a5fa, #3b82f6); color: white; }
.vote-grade.vote-C { background: linear-gradient(135deg, #f87171, #ef4444); color: white; }

.vote-star {
  font-size: 14px;
  color: #fbbf24;
}

.voting-style-desc {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

/* Voting Channel Input */
.voting-channel-section {
  margin-top: 16px;
}

.voting-channel-input {
  margin-top: 12px;
}

.voting-channel-input input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
}

.voting-channel-input input::placeholder {
  color: var(--text-secondary);
}

.voting-channel-input input:focus {
  outline: none;
  border-color: #8b5cf6;
}

/* ==================== Vote Tab Content ==================== */

.vote-tab-content {
  padding: 16px 0;
}

.voting-section {
  margin-bottom: 24px;
}

.voting-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.voting-section-icon {
  font-size: 20px;
}

.voting-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voting-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==================== Votable Track Card ==================== */

.votable-track {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}

.votable-track:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.votable-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.votable-track-cover {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.votable-track-details {
  flex: 1;
  min-width: 0;
}

.votable-track-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.votable-track-artist {
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.votable-track-stats {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==================== Vote Buttons ==================== */

.vote-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.vote-buttons-grades {
  gap: 6px;
}

.vote-buttons-stars {
  gap: 4px;
}

.vote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.vote-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(139, 92, 246, 0.2);
}

.vote-btn:active {
  transform: translateY(0);
}

.vote-btn-selected {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* SABDC Grade Buttons */
.vote-btn-S {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
  border-color: rgba(251, 191, 36, 0.4);
}
.vote-btn-S:hover, .vote-btn-S.vote-btn-selected {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  border-color: #fbbf24;
}

.vote-btn-A {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(167, 139, 250, 0.4);
}
.vote-btn-A:hover, .vote-btn-A.vote-btn-selected {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  color: white;
  border-color: #a78bfa;
}

.vote-btn-B {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.2));
  border-color: rgba(52, 211, 153, 0.4);
}
.vote-btn-B:hover, .vote-btn-B.vote-btn-selected {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: white;
  border-color: #34d399;
}

.vote-btn-D {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(96, 165, 250, 0.4);
}
.vote-btn-D:hover, .vote-btn-D.vote-btn-selected {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  border-color: #60a5fa;
}

.vote-btn-C {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.2), rgba(239, 68, 68, 0.2));
  border-color: rgba(248, 113, 113, 0.4);
}
.vote-btn-C:hover, .vote-btn-C.vote-btn-selected {
  background: linear-gradient(135deg, #f87171, #ef4444);
  color: white;
  border-color: #f87171;
}

/* Star Vote Buttons */
.vote-buttons-stars .vote-btn {
  min-width: 40px;
  height: 40px;
  font-size: 16px;
}

.vote-btn-1, .vote-btn-2, .vote-btn-3, .vote-btn-4, .vote-btn-5 {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.vote-btn-1:hover, .vote-btn-2:hover, .vote-btn-3:hover, .vote-btn-4:hover, .vote-btn-5:hover,
.vote-btn-1.vote-btn-selected, .vote-btn-2.vote-btn-selected, .vote-btn-3.vote-btn-selected,
.vote-btn-4.vote-btn-selected, .vote-btn-5.vote-btn-selected {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  border-color: #fbbf24;
}

/* ==================== Leaderboard ==================== */

.leaderboard-section {
  margin-top: 24px;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.leaderboard-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.leaderboard-top {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.leaderboard-item[data-rank="1"] {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
  border-color: rgba(251, 191, 36, 0.4);
}

.leaderboard-item[data-rank="2"] {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(160, 160, 160, 0.1));
  border-color: rgba(192, 192, 192, 0.4);
}

.leaderboard-item[data-rank="3"] {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(180, 110, 40, 0.1));
  border-color: rgba(205, 127, 50, 0.4);
}

.leaderboard-rank {
  font-size: 20px;
  min-width: 32px;
  text-align: center;
}

.leaderboard-cover {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.leaderboard-info {
  flex: 1;
  min-width: 0;
}

.leaderboard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leaderboard-artist {
  font-size: 12px;
  color: var(--text-secondary);
}

.leaderboard-score {
  text-align: right;
}

.leaderboard-score-value {
  font-size: 18px;
  font-weight: 700;
  color: #fbbf24;
}

.leaderboard-vote-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==================== Share Track Modal ==================== */

.share-track-modal {
  max-width: 400px;
}

.share-track-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 16px;
}

.share-preview-cover {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.share-preview-info {
  flex: 1;
}

.share-preview-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.share-preview-artist {
  font-size: 14px;
  color: var(--text-secondary);
}

.share-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-primary);
}

.share-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8b5cf6;
}

/* ==================== Share Vote Button in Queue ==================== */

.share-vote-btn {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2)) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
}

.share-vote-btn:hover {
  background: linear-gradient(135deg, #ef4444, #f59e0b) !important;
  border-color: #ef4444 !important;
}

/* ==================== Vote Tab Button ==================== */

.queue-tab-vote {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
}

.queue-tab-vote.active {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(245, 158, 11, 0.3));
  border-color: #ef4444;
}

/* ==================== Compact Vote Buttons (for queue items) ==================== */

.compact-vote-buttons {
  display: flex;
  gap: 4px;
}

.compact-vote-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.compact-vote-btn:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.5);
  color: var(--text-primary);
}

.compact-vote-btn.voted {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-color: #8b5cf6;
  color: white;
}

.compact-vote-S { color: #fbbf24; }
.compact-vote-A { color: #a78bfa; }
.compact-vote-B { color: #34d399; }
.compact-vote-D { color: #60a5fa; }
.compact-vote-C { color: #f87171; }

/* ==================== Voting Empty State ==================== */

.voting-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.voting-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.voting-empty-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.voting-empty-subtext {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==================== Mobile Responsive ==================== */

@media (max-width: 600px) {
  .voting-styles-grid {
    grid-template-columns: 1fr;
  }

  .vote-btn {
    min-width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .votable-track-cover {
    width: 50px;
    height: 50px;
  }

  .leaderboard-cover {
    width: 40px;
    height: 40px;
  }

  .share-preview-cover {
    width: 60px;
    height: 60px;
  }
}

/* ==================== Tally Votes Top Bar ==================== */

.voting-top-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 12px;
}

.tally-votes-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tally-votes-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.tally-votes-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  cursor: not-allowed;
}

.voting-status-text {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==================== Tally Modal ==================== */

.tally-modal {
  max-width: 400px;
}

.tally-warning {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tally-warning strong {
  color: #ef4444;
}

.tally-effects {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.tally-effects li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tally-effects li::before {
  content: '';
  font-size: 12px;
}

.tally-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-danger:hover {
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* ==================== Rankings View ==================== */

.rankings-view {
  padding: 0;
}

.rankings-header {
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.05));
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  margin-bottom: 16px;
}

.rankings-header h2 {
  font-size: 24px;
  color: #fbbf24;
  margin: 0 0 8px 0;
}

.rankings-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.rankings-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.ranking-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.ranking-top {
  border-width: 2px;
}

.ranking-1 {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
  border-color: rgba(251, 191, 36, 0.5);
}

.ranking-2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(160, 160, 160, 0.1));
  border-color: rgba(192, 192, 192, 0.5);
}

.ranking-3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(180, 110, 40, 0.1));
  border-color: rgba(205, 127, 50, 0.5);
}

.ranking-position {
  min-width: 40px;
  text-align: center;
}

.ranking-medal {
  font-size: 24px;
}

.ranking-cover {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.ranking-info {
  flex: 1;
  min-width: 0;
}

.ranking-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-artist {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-submitter {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ranking-score {
  text-align: right;
  min-width: 60px;
}

.ranking-score-value {
  font-size: 16px;
  font-weight: 700;
  color: #fbbf24;
}

.ranking-vote-count {
  font-size: 11px;
  color: var(--text-muted);
}

.rankings-footer {
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 16px;
}

.rankings-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ==================== Inline Voting (Now Playing Fallback) ==================== */

.inline-voting-section {
  margin: 12px 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
}

.inline-voting-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 10px;
}

.inline-voting-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.inline-vote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
}

.inline-vote-label {
  font-size: 16px;
  color: var(--text-primary);
}

.inline-vote-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.inline-vote-btn:active {
  transform: translateY(0);
}

.inline-vote-selected {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Inline SABDC Grade Buttons */
.inline-vote-btn-S {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
  border-color: rgba(251, 191, 36, 0.4);
}
.inline-vote-btn-S:hover, .inline-vote-btn-S.inline-vote-selected {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-color: #fbbf24;
}
.inline-vote-btn-S:hover .inline-vote-label, .inline-vote-btn-S.inline-vote-selected .inline-vote-label {
  color: #1a1a1a;
}

.inline-vote-btn-A {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(167, 139, 250, 0.4);
}
.inline-vote-btn-A:hover, .inline-vote-btn-A.inline-vote-selected {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  border-color: #a78bfa;
}
.inline-vote-btn-A:hover .inline-vote-label, .inline-vote-btn-A.inline-vote-selected .inline-vote-label {
  color: white;
}

.inline-vote-btn-B {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.2));
  border-color: rgba(52, 211, 153, 0.4);
}
.inline-vote-btn-B:hover, .inline-vote-btn-B.inline-vote-selected {
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: #34d399;
}
.inline-vote-btn-B:hover .inline-vote-label, .inline-vote-btn-B.inline-vote-selected .inline-vote-label {
  color: white;
}

.inline-vote-btn-D {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(96, 165, 250, 0.4);
}
.inline-vote-btn-D:hover, .inline-vote-btn-D.inline-vote-selected {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-color: #60a5fa;
}
.inline-vote-btn-D:hover .inline-vote-label, .inline-vote-btn-D.inline-vote-selected .inline-vote-label {
  color: white;
}

.inline-vote-btn-C {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.2), rgba(239, 68, 68, 0.2));
  border-color: rgba(248, 113, 113, 0.4);
}
.inline-vote-btn-C:hover, .inline-vote-btn-C.inline-vote-selected {
  background: linear-gradient(135deg, #f87171, #ef4444);
  border-color: #f87171;
}
.inline-vote-btn-C:hover .inline-vote-label, .inline-vote-btn-C.inline-vote-selected .inline-vote-label {
  color: white;
}

/* Inline Star Buttons */
.inline-vote-stars .inline-vote-btn {
  min-width: 44px;
  height: 40px;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.inline-vote-stars .inline-vote-btn:hover,
.inline-vote-stars .inline-vote-btn.inline-vote-selected {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-color: #fbbf24;
}

.inline-vote-stars .inline-vote-btn:hover .inline-vote-label,
.inline-vote-stars .inline-vote-btn.inline-vote-selected .inline-vote-label {
  color: #1a1a1a;
}

.inline-voting-status {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.inline-voting-status strong {
  color: #fbbf24;
}

/* ==================== Rankings Mobile ==================== */

@media (max-width: 600px) {
  .voting-top-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .tally-votes-btn {
    width: 100%;
    justify-content: center;
  }

  .ranking-cover {
    width: 48px;
    height: 48px;
  }

  .ranking-medal {
    font-size: 20px;
  }

  .ranking-position {
    min-width: 32px;
  }

  .inline-vote-btn {
    min-width: 40px;
    height: 38px;
    padding: 6px 8px;
  }

  .inline-vote-label {
    font-size: 14px;
  }
}
