/**
 * Joka Karaoke - Component Request View Styles
 * UTF-8 NO BOM
 */

/* Refined Soft & Elegant Color Palette */
.karaoke-component-root .text-primary,
.karaoke-component-root a.text-primary,
.karaoke-component-root h1.text-primary,
.karaoke-component-root h2.text-primary,
.karaoke-component-root h3.text-primary,
.karaoke-component-root h4.text-primary,
.karaoke-component-root h5.text-primary,
.karaoke-component-root h6.text-primary,
.karaoke-component-root i.text-primary {
  color: #60a5fa !important;
}

/* Song Item Card */
.song-item {
  background-color: #0b1120 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.75rem !important;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
  cursor: pointer;
}
.song-item:hover {
  background-color: #131d33 !important;
  border-color: rgba(96, 165, 250, 0.4) !important;
}
.song-item:active {
  transform: scale(0.99);
}

/* Artist on Top (Primary identification for alphabetical sorting) */
.song-artist-top {
  color: #e2e8f0 !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 2px;
}
/* Song Title below Artist */
.song-title-sub {
  color: #8da2be !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
}
.song-item:hover .song-artist-top {
  color: #ffffff !important;
}
.song-item:hover .song-title-sub {
  color: #93c5fd !important;
}

/* Language Badge inside song items */
.badge-lang {
  background-color: rgba(59, 130, 246, 0.14) !important;
  color: #93c5fd !important;
  border: 1px solid rgba(96, 165, 250, 0.3) !important;
  font-weight: 600 !important;
  font-size: 0.76rem !important;
  padding: 0.3rem 0.6rem !important;
}

/* Soft Sapphire "+ Pedir" Action Button */
.btn-action-pedir {
  background: rgba(37, 99, 235, 0.14) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(96, 165, 250, 0.32) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 9999px !important;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.btn-action-pedir:hover,
.song-item:hover .btn-action-pedir {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border-color: #60a5fa !important;
  transform: scale(1.03);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35) !important;
}

/* Deeper Royal Blue "Carregar mais músicas" Button */
.btn-load-more {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(96, 165, 250, 0.4) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 0.55rem 1.5rem !important;
  box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3) !important;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-load-more:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4) !important;
}
.btn-load-more:active {
  transform: translateY(0) scale(0.98);
}

/* "Explorar Catálogo" Toggle Button */
.btn-explore-toggle {
  border: 1px solid rgba(96, 165, 250, 0.4) !important;
  color: #93c5fd !important;
  background: rgba(30, 64, 175, 0.12) !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}
.btn-explore-toggle:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border-color: #60a5fa !important;
}

/* Chips active state in deeper royal blue */
.btn-chip {
  padding: 0.35rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.18s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}
.btn-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.btn-chip.active {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
  border-color: #60a5fa !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* Scrollbar Customization */
#results::-webkit-scrollbar,
#catalogue-list::-webkit-scrollbar {
  width: 7px;
}
#results::-webkit-scrollbar-track,
#catalogue-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
#results::-webkit-scrollbar-thumb,
#catalogue-list::-webkit-scrollbar-thumb {
  background-color: rgba(59, 130, 246, 0.35);
  border-radius: 4px;
}
#results::-webkit-scrollbar-thumb:hover,
#catalogue-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(59, 130, 246, 0.6);
}

/* Component Layout Utilities (No Inline Styles) */
.karaoke-component-container {
  width: 100%;
}
.access-card {
  width: 100%;
}
.karaoke-closed-text {
  width: 100%;
}
.karaoke-pin-intro {
  line-height: 1.45;
}
.karaoke-pin-form {
  width: 100%;
}
.karaoke-results-dropdown {
  max-height: 380px;
  overflow-y: auto;
}
.karaoke-catalogue-list {
  max-height: 500px;
}
.karaoke-check-badge {
  width: 32px;
  height: 32px;
}

/* Upcoming Events Schedule Card */
.karaoke-closed-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-date-badge {
  min-width: 64px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}
.upcoming-event-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.upcoming-event-item:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.4);
}

/* Hide hero banner during active song search/ordering session */
body.karaoke-session-active .site-banner-area {
  display: none !important;
}

/* Event Header & Schedule Badges (No Inline Styles) */
.karaoke-event-banner {
  background-color: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}
.karaoke-event-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.karaoke-schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}
.badge-live-pulse {
  background: rgba(34, 197, 94, 0.12) !important;
  color: #4ade80 !important;
  border: 1px solid rgba(74, 222, 128, 0.35) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.35rem 0.75rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.badge-upcoming-pill {
  background: rgba(234, 179, 8, 0.12) !important;
  color: #facc15 !important;
  border: 1px solid rgba(250, 204, 21, 0.35) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.35rem 0.75rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.badge-ended-pill {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #f87171 !important;
  border: 1px solid rgba(248, 113, 113, 0.35) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.35rem 0.75rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.badge-inactive-pill {
  background: rgba(148, 163, 184, 0.12) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(148, 163, 184, 0.35) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.35rem 0.75rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.badge-connected-event {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.04em;
}
.badge-queue-event {
  background: rgba(56, 189, 248, 0.15) !important;
  color: #7dd3fc !important;
  border: 1px solid rgba(125, 211, 252, 0.3) !important;
  font-size: 0.72rem !important;
}
.live-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: live-pulse-anim 1.8s infinite ease-in-out;
}
@keyframes live-pulse-anim {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* Permanent Content & SEO Info Blocks */
.karaoke-how-it-works-section {
  margin-top: 2rem;
}
.karaoke-step-card {
  background-color: #0f172a !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 1rem !important;
  padding: 1.5rem !important;
  height: 100%;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.karaoke-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}
[data-bs-theme="light"] .karaoke-step-card {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}
[data-bs-theme="light"] .karaoke-step-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.karaoke-permanent-card {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 100%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 1rem !important;
  padding: 1.5rem !important;
}
[data-bs-theme="light"] .karaoke-permanent-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.genre-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(96, 165, 250, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.25);
  margin: 0.2rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.genre-badge:hover {
  background: rgba(96, 165, 250, 0.25);
  color: #ffffff;
}

/* High-Contrast Dark Theme Typography & Readability */
[data-bs-theme="dark"] .karaoke-component-root {
  color: #f1f5f9;
}
[data-bs-theme="dark"] .karaoke-component-root h1,
[data-bs-theme="dark"] .karaoke-component-root h2,
[data-bs-theme="dark"] .karaoke-component-root h3,
[data-bs-theme="dark"] .karaoke-component-root h4,
[data-bs-theme="dark"] .karaoke-component-root h5,
[data-bs-theme="dark"] .karaoke-component-root h6,
[data-bs-theme="dark"] .karaoke-component-root .text-body {
  color: #f8fafc !important;
}
[data-bs-theme="dark"] .karaoke-component-root .text-secondary,
[data-bs-theme="dark"] .karaoke-component-root .text-muted {
  color: #94a3b8 !important;
}
[data-bs-theme="dark"] .karaoke-component-root p.text-secondary,
[data-bs-theme="dark"] .karaoke-component-root span.text-secondary {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .karaoke-closed-text {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .karaoke-pin-intro {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .karaoke-step-card h4 {
  color: #f8fafc !important;
}
[data-bs-theme="dark"] .karaoke-step-card p {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .karaoke-permanent-card h4 {
  color: #f8fafc !important;
}
[data-bs-theme="dark"] .karaoke-permanent-card p {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .form-label,
[data-bs-theme="dark"] .form-label.text-secondary {
  color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .input-group-dark .form-control {
  background-color: #0f172a !important;
  color: #f8fafc !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}
[data-bs-theme="dark"] .input-group-dark .form-control::placeholder {
  color: #64748b !important;
}
[data-bs-theme="dark"] .input-group-dark .input-group-text {
  background-color: #0b1120 !important;
  color: #94a3b8 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Light Theme High-Contrast Typography & Components */
[data-bs-theme="light"] .karaoke-component-root {
  color: #1e293b;
}
[data-bs-theme="light"] .karaoke-component-root .text-primary,
[data-bs-theme="light"] .karaoke-component-root a.text-primary,
[data-bs-theme="light"] .karaoke-component-root h1.text-primary,
[data-bs-theme="light"] .karaoke-component-root h2.text-primary,
[data-bs-theme="light"] .karaoke-component-root h3.text-primary,
[data-bs-theme="light"] .karaoke-component-root h4.text-primary,
[data-bs-theme="light"] .karaoke-component-root h5.text-primary,
[data-bs-theme="light"] .karaoke-component-root h6.text-primary,
[data-bs-theme="light"] .karaoke-component-root i.text-primary {
  color: #1d4ed8 !important;
}
[data-bs-theme="light"] .karaoke-component-root h1,
[data-bs-theme="light"] .karaoke-component-root h2,
[data-bs-theme="light"] .karaoke-component-root h3,
[data-bs-theme="light"] .karaoke-component-root h4,
[data-bs-theme="light"] .karaoke-component-root h5,
[data-bs-theme="light"] .karaoke-component-root h6,
[data-bs-theme="light"] .karaoke-component-root .text-body {
  color: #0f172a !important;
}
[data-bs-theme="light"] .karaoke-component-root .text-secondary,
[data-bs-theme="light"] .karaoke-component-root .text-muted {
  color: #475569 !important;
}
[data-bs-theme="light"] .karaoke-component-root p.text-secondary,
[data-bs-theme="light"] .karaoke-component-root span.text-secondary {
  color: #334155 !important;
}
[data-bs-theme="light"] .karaoke-closed-text {
  color: #334155 !important;
}
[data-bs-theme="light"] .karaoke-pin-intro {
  color: #334155 !important;
}
[data-bs-theme="light"] .karaoke-step-card h4 {
  color: #0f172a !important;
}
[data-bs-theme="light"] .karaoke-step-card p {
  color: #475569 !important;
}
[data-bs-theme="light"] .karaoke-permanent-card h4 {
  color: #0f172a !important;
}
[data-bs-theme="light"] .karaoke-permanent-card p {
  color: #475569 !important;
}
[data-bs-theme="light"] .form-label,
[data-bs-theme="light"] .form-label.text-secondary {
  color: #0f172a !important;
}
[data-bs-theme="light"] .input-group-dark .form-control {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border-color: #cbd5e1 !important;
}
[data-bs-theme="light"] .input-group-dark .form-control::placeholder {
  color: #94a3b8 !important;
}
[data-bs-theme="light"] .input-group-dark .input-group-text {
  background-color: #f8fafc !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}

/* Song Item in Light Theme */
[data-bs-theme="light"] .song-item {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
[data-bs-theme="light"] .song-item:hover {
  background-color: #f8fafc !important;
  border-color: #93c5fd !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
[data-bs-theme="light"] .song-artist-top {
  color: #0f172a !important;
}
[data-bs-theme="light"] .song-title-sub {
  color: #475569 !important;
}
[data-bs-theme="light"] .song-item:hover .song-artist-top {
  color: #1d4ed8 !important;
}
[data-bs-theme="light"] .song-item:hover .song-title-sub {
  color: #2563eb !important;
}

/* Event Banner in Light Theme */
[data-bs-theme="light"] .karaoke-event-banner {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
[data-bs-theme="light"] .karaoke-schedule-badge {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
}

/* Filter chips in Light Theme */
[data-bs-theme="light"] .btn-chip {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
}
[data-bs-theme="light"] .btn-chip:hover {
  background: #f1f5f9;
  color: #0f172a;
}
[data-bs-theme="light"] .btn-chip.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
}

/* Access card in Light Theme */
[data-bs-theme="light"] .access-card {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}
[data-bs-theme="light"] .karaoke-closed-icon-badge {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}

/* Full Queue Modal & Item Cards - Base & Light Theme */
.karaoke-queue-modal-content {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15) !important;
}
.btn-open-full-queue {
  border: 1px solid #0284c7 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.15rem !important;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-open-full-queue:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.5);
  transform: translateY(-1px);
}
.badge-queue-counter,
#global-queue-count {
  background: #ffffff !important;
  color: #30638d !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  padding: 0.32rem 0.8rem !important;
  border-radius: 50rem !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) !important;
  display: inline-flex;
  align-items: center;
}
.badge-queue-counter.has-items,
#global-queue-count.has-items {
  background: #ffffff !important;
  color: #30638d !important;
  font-weight: 800 !important;
}
.queue-card-playing {
  background: #ecfdf5 !important;
  border: 1.5px solid #10b981 !important;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}
.queue-card-playing h4 {
  color: #065f46 !important;
}
.queue-card-playing p {
  color: #047857 !important;
}
.queue-item-row {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.85rem;
  padding: 0.9rem 1.15rem;
  color: #0f172a !important;
  transition: all 0.2s ease;
}
.queue-item-row:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
}
.queue-item-row h4 {
  color: #0f172a !important;
}
.queue-item-row p {
  color: #475569 !important;
}
.badge-wait-counter {
  background-color: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid #bae6fd !important;
  font-weight: 700 !important;
}
.queue-item-row.queue-item-me {
  background: #eff6ff !important;
  border: 2px solid #2563eb !important;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.2) !important;
}
.queue-item-row.queue-item-me h4 {
  color: #1d4ed8 !important;
}
.queue-item-row.queue-item-me p {
  color: #2563eb !important;
}
.badge-you-are-here {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
.btn-card-view-queue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  border: 1px solid #38bdf8 !important;
  color: #ffffff !important;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
  transition: all 0.2s ease;
}
.btn-card-view-queue:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%) !important;
  border-color: #7dd3fc !important;
  color: #ffffff !important;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
  transform: translateY(-1px);
}
#my-queue-status-card {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.6) 0%,
    #0f172a 100%
  ) !important;
  border: 1.5px solid #38bdf8 !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(56, 189, 248, 0.3) !important;
}
#my-queue-status-card h4 {
  color: #ffffff !important;
  font-weight: 700 !important;
}
#my-queue-status-card p {
  color: #cbd5e1 !important;
}
#my-queue-status-card strong {
  color: #38bdf8 !important;
}

/* Full Queue Modal & Item Cards - Dark Theme Overrides */
[data-bs-theme="dark"] .karaoke-queue-modal-content {
  background-color: #0b1120 !important;
  color: #f8fafc !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.85) !important;
}
[data-bs-theme="dark"] .karaoke-queue-modal-content .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
[data-bs-theme="dark"] .queue-card-playing {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.35) 0%,
    #0f172a 100%
  ) !important;
  border: 1.5px solid #10b981 !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3) !important;
}
[data-bs-theme="dark"] .queue-card-playing h4 {
  color: #ffffff !important;
}
[data-bs-theme="dark"] .queue-card-playing p {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .queue-item-row {
  background: #131d33 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #f8fafc !important;
}
[data-bs-theme="dark"] .queue-item-row:hover {
  background: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
[data-bs-theme="dark"] .queue-item-row h4 {
  color: #ffffff !important;
}
[data-bs-theme="dark"] .queue-item-row p {
  color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .queue-item-row.queue-item-me {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.65) 0%,
    #0f172a 100%
  ) !important;
  border: 2px solid #38bdf8 !important;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.45) !important;
}
[data-bs-theme="dark"] .queue-item-row.queue-item-me h4 {
  color: #38bdf8 !important;
}
[data-bs-theme="dark"] .queue-item-row.queue-item-me p {
  color: #93c5fd !important;
}
[data-bs-theme="dark"] .badge-you-are-here {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.5);
}

/* Custom Song Request CTA Banner & Elements */
.custom-song-cta-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(30, 41, 59, 0.7) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.custom-song-cta-banner:hover {
  border-color: rgba(245, 158, 11, 0.6);
}
.custom-song-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  font-size: 1.15rem;
}
.btn-custom-song-trigger {
  background: linear-gradient(135deg, #f59e0b, #eab308) !important;
  color: #0f172a !important;
  border: none !important;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-custom-song-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45) !important;
  color: #000000 !important;
}

/* Custom Song Info Banner inside Form */
.custom-song-info-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.45) !important;
}
.custom-song-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.custom-song-info-title {
  color: #fde68a !important;
  font-size: 0.95rem;
}
.custom-song-info-desc {
  color: #e2e8f0 !important;
  line-height: 1.4;
}

