/* RNZ-Style Playlist Dock – Nifaq (Dark Theme) */
.nifaq-playlist-dock {
  position: relative;
  bottom: 20px;
  right: 20px;
  width: 420px;
  background: #000;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Libre Caslon Text', serif;
  font-size: 15px;
  line-height: 1.5;
  overflow: hidden;
  color: #fff;
}

.nifaq-dock-header {
  background: #111;
  color: #fff;
  padding: 10px 14px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #333;
}

.nifaq-playlist-queue {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
  background: #000;
}

.nifaq-playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #333;
  background: #000;
}

.nifaq-track-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #fff;
  width: 420px;
}

.nifaq-track-image {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid #444;
}

.nifaq-track-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  color: #ccc;
}

.nifaq-track-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 2px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nifaq-track-author {
  font-size: 13px;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  color: #aaa;
  margin-bottom: 2px;
}

.nifaq-track-excerpt {
  font-size: 0.9em;
  color: #ccc;
  font-family: 'Libre Caslon Text', serif;
  margin-bottom: 4px;
}

.nifaq-track-date {
  font-size: 12px;
  color: #999;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  padding-right: 50px;
}

.nifaq-track-time {
  display: flex;
  gap: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: #ccc;
}

.current-time {
  color: #fff;
}

.nifaq-playlist-controls {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.nifaq-playlist-controls button {
  background: none;
  border: none;
  font-size: 1em;
  padding: 4px;
  cursor: pointer;
  color: #ccc;
}

.nifaq-playlist-controls button:hover {
  color: #fff;
}

.nifaq-dock-actions {
  padding: 6px 12px;
  text-align: right;
  background: #111;
  border-top: 1px solid #333;
}

.nifaq-dock-actions button {
  font-size: 12px;
  padding: 4px 8px;
  background: #222;
  border: 1px solid #444;
  border-radius: 4px;
  cursor: pointer;
  color: #ccc;
}

.nifaq-dock-actions button:hover {
  background: #333;
  color: #fff;
}

/* Remove dark-mode classes since we're making dark the default */
.nifaq-sticky-footer {
  display: none !important;
}

/* Additional dark theme adjustments */
.nifaq-track-author::after {
  color: #666;
}

.nifaq-footer-meta {
  color: #999;
}

.nifaq-footer-controls button {
  color: #ccc;
}

.nifaq-footer-controls button:hover {
  color: #fff;
}