/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background: url('/assets/logo.png') no-repeat center top fixed;
  background-size: 100% auto;
  color: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* === LAYOUT CONTAINERS === */
.main-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.main-container section,
.content-box,
.top50-chart,
.comment-box,
.poll-section {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* === HEADER === */
.site-header {
  position: relative;
  color: #FFD700;
  padding: 40px 0;
}
.header-inner {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.header-logo {
  width: 140px;
}
.header-text {
  text-align: left;
}
.station-title {
  font-family: 'Cinzel', serif;
  font-size: 4em;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 0 10px #FFD700;
  animation: shimmer 3s infinite;
}
.tagline {
  font-style: italic;
  color: #fff;
  margin: 0;
}

/* === SHIMMER EFFECT === */
@keyframes shimmer {
  0% { text-shadow: 0 0 5px #FFD700; }
  50% { text-shadow: 0 0 20px #fff700; }
  100% { text-shadow: 0 0 5px #FFD700; }
}
.text-warning {
  color: #FFD700;
  animation: shimmer 2s infinite linear;
}
.text-muted { color: #ccc; }
.text-danger { color: #FF4444; }

/* === NAVIGATION === */
.main-menu {
  background-color: #2E8B57;
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
  position: relative;
  z-index: 10;
}
.main-menu ul { list-style: none; }
.main-menu li { display: inline-block; margin: 0 15px; }
.main-menu a {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.main-menu a:hover {
  color: #87CEEB;
  text-shadow: 0 0 5px #87CEEB;
}

/* === PLAY NOW === */
.play-now { text-align: center; margin-bottom: 40px; }
.play-button {
  background-color: #FFD700;
  color: #1a1a1a;
  font-size: 1.5em;
  padding: 10px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.play-button:hover { background-color: #87CEEB; }
.live-status { margin-top: 10px; font-style: italic; color: #ccc; }

/* === WHAT'S PLAYING === */
.whats-playing {
  margin-bottom: 40px;
  padding: 10px;
  border-left: 5px solid #FFD700;
  background-color: #3a3a3a;
}
.track-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.album-art {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* === SCHEDULE PREVIEW === */
.schedule-preview h2,
.top50-chart h2,
.poll-section h2,
.about-section h2 {
  color: #FFD700;
  margin-bottom: 15px;
}
.schedule-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.schedule-column { flex: 1; min-width: 200px; }
.schedule-list { list-style: none; padding-left: 0; }
.schedule-list li { margin-bottom: 0.5rem; font-size: 1.05rem; }

/* === TOP 50 CHART === */
.chart-list { list-style: decimal inside; padding-left: 0; }
.chart-list li { margin-bottom: 0.5rem; font-size: 1.1rem; }

/* === COMMENT BOX === */
.comment-box input,
.comment-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}
.comment-box button {
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.comment-box button:hover { background-color: #87CEEB; }

/* === RECENT COMMENTS === */
.recent-comments ul { list-style: none; padding: 0; }
.recent-comments li {
  background-color: rgba(42, 42, 42, 0.9);
  padding: 10px;
  margin-bottom: 5px;
  border-left: 4px solid #FFD700;
}

/* === POLL SECTION === */
.poll-section label { display: block; margin-bottom: 10px; }
.poll-section button {
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.poll-section button:hover { background-color: #87CEEB; }

/* === FOOTER === */
.site-footer {
  background-color: rgba(26, 26, 26, 0.9);
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 2px solid #FFD700;
}
.site-footer a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 5px;
}
.site-footer a:hover { color: #87CEEB; }

/* === ADMIN DASHBOARD === */
.admin-dashboard h2,
.dj-admin-panel h2 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 10px;
}
.admin-dashboard p {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.admin-tile {
  background-color: #2E8B57;
  color: #FFD700;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: background 0.3s ease, transform 0.2s ease;
}
.admin-tile:hover {
  background-color: #3CB371;
  transform: scale(1.03);
  color: #fff;
}

/* === ABOUT SECTION (ENHANCED) === */
.about-section {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(34,34,34,0.9));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  box-shadow: 0 0 25px rgba(255,215,0,0.35);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease;
}
.about-section::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border: 2px solid #FFD700;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(255,215,0,0.6), inset 0 0 6px rgba(255,215,0,0.6);
  animation: glow-border 3s linear infinite;
}
.about-section::after {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: sweep 6s ease-in-out infinite;
}
.about-section h2 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 18px;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(255,215,0,0.7);
}
.about-section p {
  margin-bottom: 14px;
  color: #e8e8e8;
}
.about-section .callout {
  border-left: 4px solid #FFD700;
  padding-left: 12px;
  margin: 16px 0;
  color: #fff;
  background: rgba(255,215,0,0.08);
  box-shadow: inset 0 0 10px rgba(255,215,0,0.12);
}
.about-section .badge {
  display: inline-block;
  background: #2E8B57;
  color: #FFD700;
  border: 1px solid #FFD700;
  border-radius: 999px;
  padding: 6px 12px;
  margin: 6px 6px 0 0;
  font-size: 0.9rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* === FRIENDS & PARTNERS === */
.friends-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.friend-card {
  background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(50,50,50,0.95));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.friend-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 0 30px rgba(255,215,0,0.8);
}
.friend-photo {
  max-width: 140px !important;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
  transition: transform 0.3s ease;
}
.friend-card:hover .friend-photo { transform: scale(1.1); }
.friend-card h4 {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}
.friend-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}
.friend-card .btn {
  background-color: #2E8B57;
  color: #FFD700;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.friend-card .btn:hover {
  background-color: #3CB371;
  color: #fff;
  transform: scale(1.05);
}
.friend-divider {
  border: 0;
  border-top: 2px dashed #FFD700;
  margin: 25px auto;
  width: 70%;
  opacity: 0.6;
}

/* === FIXES & MISC === */
.content-box h3 { margin-bottom: 12px; }
.hour-divider {
  width: 6px;
  background-color: #FFD700;
  padding: 0;
}
.time-divider,
.time-cell,
.schedule-edit-table td:first-child {
  border-left: 3px solid #FFD700;
  padding-left: 12px;
}

/* === SCHEDULE EDIT TABLE === */
.schedule-edit-table {
  overflow-x: auto;
  margin-top: 0.5rem;
}
.schedule-edit-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
}
.schedule-edit-table th,
.schedule-edit-table td {
  border: 1px solid #444;
  padding: 6px 10px;
  text-align: left;
}
.schedule-edit-table th {
  background-color: #222;
  color: #FFD700;
}
.schedule-edit-table input[type="text"] {
  width: 100%;
  padding: 4px 6px;
  background-color: #111;
  border: 1px solid #555;
  color: #fff;
}

/* === ANIMATIONS USED BY ABOUT === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glow-border {
  0%   { box-shadow: 0 0 6px rgba(255,215,0,0.4), inset 0 0 6px rgba(255,215,0,0.4); }
  50%  { box-shadow: 0 0 20px rgba(255,215,0,0.8), inset 0 0 12px rgba(255,215,0,0.6); }
  100% { box-shadow: 0 0 6px rgba(255,215,0,0.4), inset 0 0 6px rgba(255,215,0,0.4); }
}
@keyframes sweep {
  0%   { left: -40%; opacity: 0; }
  10%  { left: -20%; opacity: 0.25; }
  50%  { left: 70%; opacity: 0.15; }
  100% { left: 110%; opacity: 0; }
}
/* === DJ LISTING === */
.dj-slot {
  background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(50,50,50,0.95));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.dj-slot:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 0 30px rgba(255,215,0,0.8);
}

.dj-photo {
  max-width: 140px !important;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
  transition: transform 0.3s ease;
}

.dj-slot:hover .dj-photo {
  transform: scale(1.1);
}

.dj-slot h4 {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

.dj-slot p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Divider between DJs */
.dj-divider {
  border: 0;
  border-top: 2px dashed #FFD700;
  margin: 25px auto;
  width: 70%;
  opacity: 0.6;
}
/* === ADMIN PAGES === */
.admin-card {
  background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(50,50,50,0.95));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,215,0,0.6);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.admin-textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #FFD700;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  box-shadow: inset 0 0 10px rgba(255,215,0,0.2);
}

.admin-textarea:focus {
  outline: none;
  border-color: #87CEEB;
  box-shadow: 0 0 10px #87CEEB;
}

.form-actions {
  text-align: right;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-warning {
  background-color: #FFD700;
  color: #1a1a1a;
  border: none;
}

.btn-warning:hover {
  background-color: #87CEEB;
  color: #000;
  transform: scale(1.05);
}
/* === ADMIN DJ CARDS === */
.admin-card {
  background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(50,50,50,0.95));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.admin-dj-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-dj-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.admin-textarea,
.admin-input,
.admin-select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #FFD700;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.admin-textarea:focus,
.admin-input:focus,
.admin-select:focus {
  outline: none;
  border-color: #87CEEB;
  box-shadow: 0 0 10px #87CEEB;
}

.dj-photo {
  max-width: 140px !important;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
}
/* === ADMIN FRIENDS === */
.admin-card {
  background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(50,50,50,0.95));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.admin-friend-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-friend-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.admin-textarea,
.admin-input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #FFD700;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.admin-textarea:focus,
.admin-input:focus {
  outline: none;
  border-color: #87CEEB;
  box-shadow: 0 0 10px #87CEEB;
}
/* === ADMIN COMMENTS === */
.comments-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-comment-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-comment-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.admin-comment-card h4 {
  color: #FFD700;
  margin-bottom: 10px;
}

.admin-comment-card p {
  color: #ccc;
  margin-bottom: 8px;
}

.admin-input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #FFD700;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
}

.admin-input:focus {
  outline: none;
  border-color: #87CEEB;
  box-shadow: 0 0 10px #87CEEB;
}
/* === ADMIN REQUESTS === */
.requests-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-request-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-request-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.admin-request-card h4 {
  color: #FFD700;
  margin-bottom: 10px;
}

.admin-request-card p {
  color: #ccc;
  margin-bottom: 8px;
}

.admin-input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #FFD700;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
}

.admin-input:focus {
  outline: none;
  border-color: #87CEEB;
  box-shadow: 0 0 10px #87CEEB;
}
/* === ADMIN NEWS === */
.admin-news-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-news-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.admin-news-card h4 {
  color: #FFD700;
  margin-bottom: 10px;
}

.admin-news-card p {
  color: #ccc;
  margin-bottom: 8px;
}
/* === ICECAST ADMIN === */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  border: 2px solid #FFD700;
  border-radius: 8px;
  overflow: hidden;
}
.admin-table td {
  border: 1px solid #444;
  padding: 8px 12px;
}

.admin-mount-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.admin-mount-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}
.admin-mount-card h4 {
  margin-top: 0;
}
.admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.admin-list li {
  border-bottom: 1px solid #555;
  padding: 4px 0;
  color: #ccc;
}
/* === STATION NEWS === */
.news-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.news-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255,215,0,0.6);
}

.news-card p {
  color: #ccc;
  margin-bottom: 10px;
}

.news-card small {
  display: block;
  margin-top: 8px;
  color: #aaa;
}

.news-card.pinned {
  border-color: #87CEEB;
  box-shadow: 0 0 25px rgba(135,206,235,0.7);
}
/* === COMMENT ARCHIVE === */
.comments-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.comment-card h4 {
  margin: 0 0 8px;
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255,215,0,0.6);
}

.comment-card p {
  color: #ccc;
  margin-bottom: 6px;
}

.comment-card em {
  display: block;
  margin-top: 4px;
  color: #aaa;
}

.comment-card .reply {
  margin-top: 8px;
  padding-left: 10px;
  border-left: 3px solid #87CEEB;
  color: #fff;
}
/* === REQUEST FORM === */
.request-form .admin-input,
.request-form .admin-textarea {
  margin-bottom: 12px;
}

.request-card {
  background: rgba(42,42,42,0.9);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.request-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.request-card h4 {
  margin: 0 0 8px;
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255,215,0,0.6);
}

.request-card p {
  color: #ccc;
  margin-bottom: 6px;
}

.request-card em {
  display: block;
  margin-top: 4px;
  color: #aaa;
}

.request-card .reply {
  margin-top: 8px;
  padding-left: 10px;
  border-left: 3px solid #87CEEB;
  color: #fff;
}
/* === LOGIN FORM === */
.login-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.login-form h2 {
  margin-bottom: 20px;
}

.login-form .admin-input {
  width: 100%;
  margin-bottom: 12px;
}

.login-form .btn {
  width: 100%;
}
.perm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #ccc;
}
.perm-row span {
  min-width: 100px;
  color: #FFD700;
}
.admin-tile.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: none;
}
.chart-list {
  border: 2px solid gold;
  border-radius: 6px;
  padding: 10px 20px;
  background: #111;
  color: #eee;
}
.chart-list li {
  padding: 4px 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.chart-list li:hover {
  color: gold;
  text-shadow: 0 0 6px gold;
}
.admin-mount-card {
  border: 1px solid gold;
  padding: 15px;
  border-radius: 8px;
  background: #222;
}
.admin-list {
  list-style: none;
  padding: 0;
}
.admin-list li {
  margin: 4px 0;
}
.chart-list {
  border: 2px solid gold;
  border-radius: 6px;
  padding: 15px 25px;
  background: #111;
  color: #eee;
  max-height: 600px; /* scroll if too long */
  overflow-y: auto;
}
.chart-list li {
  padding: 6px 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.chart-list li:hover {
  color: gold;
  text-shadow: 0 0 6px gold;
}
.song-date {
  color: #888;
  font-size: 0.9em;
}
.song-title {
  color: #fff;
  font-weight: bold;
}
