/* == Imports & Root Theme == */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Syne:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

/* OLD COLORS

:root {
  --bg-dark: #10141c;
  --accent-dark: #1a212c;
  --electric-cyan: #dfff00;
  --text-body: #dfff00;
  --error-red: #ff5577;
  --neon-gold: #ffcc33;
  --icon-color: #ffcc33;
  --note-color: #ff007f;
  --menu-bg: #1a212c;
  --nav-link-color: #ffcc33;
  --menu-shadow: rgba(0, 0, 0, 0.2);
}
*/

:root {
  --bg-dark: #10141c;              /* Deep slate blue-black */
  --accent-dark: #1a212c;          /* Charcoal for contrast */

  --electric-cyan: #00ffe0;        /* Bright cyan – energetic and crisp */
  --text-body: #c0fefe;            /* Soft mint – readable and fresh */
  --error-red: #ff4444;            /* Vivid red – clear but not harsh */
  --neon-gold: #ffd700;            /* True neon gold – vibrant and classic */
  --icon-color: #00ffe0;           /* Matches electric cyan for cohesion */
  --note-color: #7fffd4;           /* Aquamarine – cool and calming */

  --menu-bg: #1a212c;              /* Dark menu background */
  --nav-link-color: #ffd700;       /* Neon gold for visibility */
  --menu-shadow: rgba(0, 0, 0, 0.2); /* Subtle depth */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem;
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.5;
}

h1 {
  font-size: 2.5rem;
  color: var(--electric-cyan);
  margin-bottom: 1rem;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2rem;
  color: var(--neon-gold);
  margin-bottom: 1rem;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 2rem;
  font-family: 'Unbounded', serif;
  color: var(--neon-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--nav-link-color);
  
}

p {
  font-size: 1rem;
  font-family: 'Boldonse', sans-serif;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #bdefff;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, select {
  padding: 0.8rem;
  font-size: 1rem;
  border: 2px solid var(--electric-cyan);
  border-radius: 6px;
  background-color: var(--accent-dark);
  color: var(--text-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--neon-gold);
  background-color: #151a25;
}

button {
  background-color: var(--electric-cyan);
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--neon-gold);
}

.form-message {
  font-size: 1rem;
  margin-top: 1rem;
}

.form-message.success {
  color: var(--electric-cyan);
}

.form-message.error {
  color: var(--error-red);
}

/* 🔁 Live Lyric Preview */
.preview-area {
  height: 60px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--bg-dark), var(--accent-dark));
  color: var(--electric-cyan);
  font-size: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  white-space: nowrap;
  border-radius: 6px;
  padding: 0.5rem 1rem;
}

#lyric-preview {
  transition: opacity 1.2s ease;
  opacity: 1;
}

#lyric-preview.fade {
  opacity: 0;
}

/* ✅ AJAX Toggle Switch Styling */
input.toggle-active[type="checkbox"] {
  appearance: none;
  width: 50px;
  height: 24px;
  background-color: #333;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

input.toggle-active[type="checkbox"]:checked {
  background-color: var(--electric-cyan);
}

input.toggle-active[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

input.toggle-active[type="checkbox"]:checked::before {
  transform: translateX(26px);
}

/* 🎨 Mood Category Color Codes */
td.mood.Dreamy         { background-color: #32004f; color: var(--text-body); }
td.mood.Empowerment    { background-color: #003f3f; color: var(--text-body); }
td.mood.Confidence     { background-color: #004466; color: var(--text-body); }
td.mood.Party          { background-color: #360077; color: var(--text-body); }
td.mood.Romantic       { background-color: #670033; color: #ffe4ee; }
td.mood.Rebellious     { background-color: #440000; color: #ffc7c7; }
td.mood.Anthem         { background-color: #002244; color: #a0dfff; }
td.mood.Uplifting      { background-color: #005522; color: #d6ffe4; }
td.mood.Throwback      { background-color: #332100; color: #fff7cc; }

/* 🔗 Navigation Styles */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--accent-dark);
}

.logo-wrapper {
  flex-shrink: 0;
}

.logo {
  height: 40px;
  filter: drop-shadow(0 0 5px var(--electric-cyan));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links .nav-cta {
  color: var(--electric-cyan);
}

/* 📱 Responsive Adjustments */
@media screen and (max-width: 640px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  form {
    width: 100%;
  }

  table {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .preview-area {
    font-size: 1rem;
    padding: 0.3rem;
  }
}

/* 🪩 Song Card Container */
.song-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: var(--accent-dark);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(255, 204, 51, 0.2);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.song-card:hover {
  box-shadow: 0 0 15px var(--neon-gold), 0 0 30px var(--neon-gold);
  transform: translateY(-2px);
}

/* 🎵 Song Title */
.song-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  text-align: left;
}

/* 🎤 Song Artist */
.song-artist {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: #ffeebe;
  opacity: 0.65;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  vertical-align: middle;
}

.align-chip .material-symbols-outlined {
  font-size: 1.2em;
  line-height: 1;
}

/* 👯‍♀️ Duet Badge */
.badge {
  display: inline-flex;
  background-color: var(--neon-gold);
  color: var(--bg-dark);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  box-shadow: 0 0 10px var(--neon-gold);
  vertical-align: middle;
  align-items: center;
}

/* ❤️ Request Button */
button.request-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  border: 1px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

button.request-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-gold), 0 0 40px var(--neon-gold);
  color: #fff8d1;
}

/* ✨ Glowing Pulse Animation */
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
  50%  { box-shadow: 0 0 15px var(--neon-gold); transform: translateY(-1px); }
  100% { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
}
/* LOAD MORE BTN */
button.load-more-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border: 2px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.4s ease, color 0.3s ease;
  box-shadow: 0 0 6px var(--neon-gold);
  animation: softPulse 3.5s infinite ease-in-out;
}

/* Calm pulse effect */
@keyframes softPulse {
  0%   { box-shadow: 0 0 4px var(--neon-gold); }
  50%  { box-shadow: 0 0 10px var(--neon-gold); }
  100% { box-shadow: 0 0 4px var(--neon-gold); }
}

button.load-more-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 14px var(--neon-gold);
  color: #fff3c2;
}

button.load-more-btn .emoji {
  font-size: 1.4rem;
  animation: pulse 1.4s infinite;
}

.duet-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.duet-toggle label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
}

.filter-row {
  display: flex;
  justify-content: flex-end; /* pushes entire block right */
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}


.modal.hidden { display: none; }
.modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); display: flex;
  justify-content: center; align-items: center;
}
.modal-content {
  background: var(--bg-dark); padding: 1rem; border-radius: 10px;
  min-width: 300px; max-width: 90%;
  animation: pulseGlow 3s infinite;
}

.queue-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  border: 1px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.queue-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-gold), 0 0 40px var(--neon-gold);
  color: #fff8d1;
}

.music-note {
  color: var(--note-color);
  font-size: 1.5rem;
  vertical-align: middle;
}

/* HAMBURGER MENU FOR SONGBOOK*/
.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.menu-icon {
  font-size: 2rem;
  background-color: var(--accent-dark); /* default: electric cyan */
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.menu-popup {
  margin-top: 0.5rem;
  background-color: var(--menu-bg);
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px var(--menu-shadow);
  padding: 0.5rem 1rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-popup a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--neon-gold);
  font-weight: bold;
}


.hidden {
  display: none;
}
/* == Global Reset & Typography == */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 2rem;
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.5;
}

/* == Headings == */
h1, h2, h3 {
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; color: var(--neon-gold); }
h2 { font-size: 2rem; color: var(--neon-gold); }
h3 { font-size: 2rem; color: var(--neon-gold); }

/* == Paragraphs & Links == */
p {
  font-size: 1rem;
  font-family: 'Boldonse', sans-serif;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: var(--electric-cyan);
}
a { text-decoration: none; }

/* == Forms == */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea, select {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid var(--electric-cyan);
  border-radius: 6px;
  background-color: var(--accent-dark);
  color: var(--text-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--neon-gold);
  background-color: #151a25;
}

button {
  background-color: var(--electric-cyan);
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: var(--neon-gold);
}

/* == Table Layout for Dashboard == */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 6px var(--neon-gold);
}
th, td {
  padding: 0.8rem 0.6rem;
  border: 1px solid var(--accent-dark);
  background-color: var(--accent-dark);
  color: var(--text-body);
  text-align: center;
}
th {
  background-color: var(--bg-dark);
  color: var(--electric-cyan);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
tr:hover {
  background-color: rgba(255, 204, 51, 0.05);
}

/* == AJAX Toggles == */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--neon-gold);
  cursor: pointer;
  border-radius: 4px;
}
input.toggle-action[type="checkbox"] {
  display: flex;
  align-content: right;
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 4px;
  background-color: var(--accent-dark);
  position: relative;
  transition: background-color 0.3s ease;
}
input.toggle-action[type="checkbox"]:checked {
  background-color: var(--electric-cyan);
}
input.toggle-action[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
input.toggle-action[type="checkbox"]:checked::before {
  transform: translateX(18px);
}

/* == Fade-Out for Completed Requests == */
.fade-out {
  animation: fadeAway 0.6s ease forwards;
}
@keyframes fadeAway {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* == Modal Styling == */
.modal.hidden { display: none; }
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: var(--bg-dark);
  padding: 1rem;
  border-radius: 10px;
  min-width: 300px;
  max-width: 90%;
  animation: pulseGlow 3s infinite;
}

/* == Navigation == */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--accent-dark);
}
.logo-wrapper {
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--text-body);
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: var(--electric-cyan);
}

/* == Glowing Button & Animation == */
button.request-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  border: 1px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}
button.request-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-gold), 0 0 40px var(--neon-gold);
  color: #fff8d1;
}
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
  50%  { box-shadow: 0 0 15px var(--neon-gold); transform: translateY(-1px); }
  100% { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
}

/* == Responsive == */
@media screen and (max-width: 640px) {
  body { padding: 1rem; }
  h1 { font-size: 2rem; }
  table { font-size: 0.9rem; word-break: break-word; }
  form { width: 100%; }
}

.hidden {
	display: none;
}

.filter-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 2rem;
	height: 40px;
	vertical-align: middle;
}

.duet-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.duet-toggle .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

.duet-toggle label {
  margin: 0;
  font-weight: 500;
}

.duet-toggle input[type="checkbox"] {
  transform: scale(1.2); /* Optional: enlarges checkbox for touch targets */
}/* == Imports & Root Theme == */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Syne:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

:root {
  --bg-dark: #10141c;
  --accent-dark: #1a212c;
  --electric-cyan: #dfff00;
  --text-body: #dfff00;
  --error-red: #ff5577;
  --neon-gold: #ffcc33;
  --icon-color: #ffcc33;
  --note-color: #ff007f;
  --menu-bg: #1a212c;
  --nav-link-color: #ffcc33;
  --menu-shadow: rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem;
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.5;
}

h1 {
  font-size: 2.5rem;
  color: var(--electric-cyan);
  margin-bottom: 1rem;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2rem;
  color: var(--neon-gold);
  margin-bottom: 1rem;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 2rem;
  font-family: 'Unbounded', serif;
  color: var(--neon-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--nav-link-color);
  
}

p {
  font-size: 1rem;
  font-family: 'Boldonse', sans-serif;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #bdefff;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, select {
  padding: 0.8rem;
  font-size: 1rem;
  border: 2px solid var(--electric-cyan);
  border-radius: 6px;
  background-color: var(--accent-dark);
  color: var(--text-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--neon-gold);
  background-color: #151a25;
}

button {
  background-color: var(--electric-cyan);
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--neon-gold);
}

.form-message {
  font-size: 1rem;
  margin-top: 1rem;
}

.form-message.success {
  color: var(--electric-cyan);
}

.form-message.error {
  color: var(--error-red);
}

/* 🔁 Live Lyric Preview */
.preview-area {
  height: 60px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--bg-dark), var(--accent-dark));
  color: var(--electric-cyan);
  font-size: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  white-space: nowrap;
  border-radius: 6px;
  padding: 0.5rem 1rem;
}

#lyric-preview {
  transition: opacity 1.2s ease;
  opacity: 1;
}

#lyric-preview.fade {
  opacity: 0;
}

/* ✅ AJAX Toggle Switch Styling */
input.toggle-active[type="checkbox"] {
  appearance: none;
  width: 50px;
  height: 24px;
  background-color: #333;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

input.toggle-active[type="checkbox"]:checked {
  background-color: var(--electric-cyan);
}

input.toggle-active[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

input.toggle-active[type="checkbox"]:checked::before {
  transform: translateX(26px);
}

/* 🎨 Mood Category Color Codes */
td.mood.Dreamy         { background-color: #32004f; color: var(--text-body); }
td.mood.Empowerment    { background-color: #003f3f; color: var(--text-body); }
td.mood.Confidence     { background-color: #004466; color: var(--text-body); }
td.mood.Party          { background-color: #360077; color: var(--text-body); }
td.mood.Romantic       { background-color: #670033; color: #ffe4ee; }
td.mood.Rebellious     { background-color: #440000; color: #ffc7c7; }
td.mood.Anthem         { background-color: #002244; color: #a0dfff; }
td.mood.Uplifting      { background-color: #005522; color: #d6ffe4; }
td.mood.Throwback      { background-color: #332100; color: #fff7cc; }

/* 🔗 Navigation Styles */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--accent-dark);
}

.logo-wrapper {
  flex-shrink: 0;
}

.logo {
  height: 40px;
  filter: drop-shadow(0 0 5px var(--electric-cyan));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links .nav-cta {
  color: var(--electric-cyan);
}

/* 📱 Responsive Adjustments */
@media screen and (max-width: 640px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  form {
    width: 100%;
  }

  table {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .preview-area {
    font-size: 1rem;
    padding: 0.3rem;
  }
}

/* 🪩 Song Card Container */
.song-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: var(--accent-dark);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(255, 204, 51, 0.2);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.song-card:hover {
  box-shadow: 0 0 15px var(--neon-gold), 0 0 30px var(--neon-gold);
  transform: translateY(-2px);
}

/* 🎵 Song Title */
.song-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  text-align: left !important;
}

/* 🎤 Song Artist */
.song-artist {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-style: italic;
  color: #ffeebe;
  opacity: 0.65;
  align-items: left;
  padding-left: 5px;
}

/* 👯‍♀️ Duet Badge */
.badge {
  display: inline-block;
  background-color: var(--neon-gold);
  color: var(--bg-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.4rem;
  box-shadow: 0 0 10px var(--neon-gold);
}

/* ❤️ Request Button */
button.request-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  border: 1px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

button.request-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-gold), 0 0 40px var(--neon-gold);
  color: #fff8d1;
}

/* ✨ Glowing Pulse Animation */
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
  50%  { box-shadow: 0 0 15px var(--neon-gold); transform: translateY(-1px); }
  100% { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
}
/* LOAD MORE BTN */
button.load-more-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border: 2px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.4s ease, color 0.3s ease;
  box-shadow: 0 0 6px var(--neon-gold);
  animation: softPulse 3.5s infinite ease-in-out;
}

/* Calm pulse effect */
@keyframes softPulse {
  0%   { box-shadow: 0 0 4px var(--neon-gold); }
  50%  { box-shadow: 0 0 10px var(--neon-gold); }
  100% { box-shadow: 0 0 4px var(--neon-gold); }
}

button.load-more-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 14px var(--neon-gold);
  color: #fff3c2;
}

button.load-more-btn .emoji {
  font-size: 1.4rem;
  animation: pulse 1.4s infinite;
}

.duet-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.duet-toggle label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
}

.filter-row {
  display: flex;
  justify-content: flex-end; /* pushes entire block right */
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}


.modal.hidden { display: none; }
.modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); display: flex;
  justify-content: center; align-items: center;
}
.modal-content {
  background: var(--bg-dark); padding: 1rem; border-radius: 10px;
  min-width: 300px; max-width: 90%;
  animation: pulseGlow 3s infinite;
}

.queue-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  border: 1px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.queue-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-gold), 0 0 40px var(--neon-gold);
  color: #fff8d1;
}

.music-note {
  color: var(--note-color);
  font-size: 1.5rem;
  vertical-align: middle;
}

/* HAMBURGER MENU FOR SONGBOOK*/
.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.menu-icon {
  font-size: 2rem;
  background-color: var(--accent-dark); /* default: electric cyan */
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.menu-popup {
  margin-top: 0.5rem;
  background-color: var(--menu-bg);
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px var(--menu-shadow);
  padding: 0.5rem 1rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-popup a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--neon-gold);
  font-weight: bold;
}


.hidden {
  display: none;
}
/* == Global Reset & Typography == */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 2rem;
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.5;
}

/* == Headings == */
h1, h2, h3 {
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; color: var(--neon-gold); }
h2 { font-size: 2rem; color: var(--neon-gold); }
h3 { font-size: 2rem; color: var(--neon-gold); }

/* == Paragraphs & Links == */
p {
  font-size: 1rem;
  font-family: 'Boldonse', sans-serif;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: var(--electric-cyan);
}
a { text-decoration: none; }

/* == Forms == */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea, select {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid var(--electric-cyan);
  border-radius: 6px;
  background-color: var(--accent-dark);
  color: var(--text-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--neon-gold);
  background-color: #151a25;
}

button {
  background-color: var(--electric-cyan);
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: var(--neon-gold);
}

/* == Table Layout for Dashboard == */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 6px var(--neon-gold);
}
th, td {
  padding: 0.8rem 0.6rem;
  border: 1px solid var(--accent-dark);
  background-color: var(--accent-dark);
  color: var(--text-body);
  text-align: center;
}
th {
  background-color: var(--bg-dark);
  color: var(--electric-cyan);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
tr:hover {
  background-color: rgba(255, 204, 51, 0.05);
}

/* == AJAX Toggles == */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--neon-gold);
  cursor: pointer;
  border-radius: 4px;
}
input.toggle-action[type="checkbox"] {
  display: flex;
  align-content: right;
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 4px;
  background-color: var(--accent-dark);
  position: relative;
  transition: background-color 0.3s ease;
}
input.toggle-action[type="checkbox"]:checked {
  background-color: var(--electric-cyan);
}
input.toggle-action[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
input.toggle-action[type="checkbox"]:checked::before {
  transform: translateX(18px);
}

/* == Fade-Out for Completed Requests == */
.fade-out {
  animation: fadeAway 0.6s ease forwards;
}
@keyframes fadeAway {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* == Modal Styling == */
.modal.hidden { display: none; }
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: var(--bg-dark);
  padding: 1rem;
  border-radius: 10px;
  min-width: 300px;
  max-width: 90%;
  animation: pulseGlow 3s infinite;
}

/* == Navigation == */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--accent-dark);
}
.logo-wrapper {
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--text-body);
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: var(--electric-cyan);
}

/* == Glowing Button & Animation == */
button.request-btn {
  background-color: var(--accent-dark);
  color: var(--neon-gold);
  align-items: center;
  vertical-align: middle;
  gap: 0.4rem;
  font-size: 1rem;
  display: inline-flex;
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  border: 1px solid var(--neon-gold);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

button.request-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--neon-gold), 0 0 40px var(--neon-gold);
  color: #fff8d1;
}
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
  50%  { box-shadow: 0 0 15px var(--neon-gold); transform: translateY(-1px); }
  100% { box-shadow: 0 0 5px var(--neon-gold); transform: translateY(0); }
}

/* == Responsive == */
@media screen and (max-width: 640px) {
  body { padding: 1rem; }
  h1 { font-size: 2rem; }
  table { font-size: 0.9rem; word-break: break-word; }
  form { width: 100%; }
}

.hidden {
	display: none;
}

.filter-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 2rem;
	height: 40px;
	vertical-align: middle;
}

.duet-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.duet-toggle .material-symbols-outlined {
  font-size: 28px;
  line-height: 1;
  vertical-align: middle;
}

.duet-toggle label {
  margin: 0;
  font-weight: 500;
}

.duet-toggle input[type="checkbox"] {
  transform: scale(1.2); /* Optional: enlarges checkbox for touch targets */
}
