#music-player {
    background-image: url('music/thumb/Atomic_Armor_3025_888_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); /* Cyan shadow */
    width: 450px;
    margin: 50px auto;
    color: #00ff00; /* Futuristic green text */
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
}

#song-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

#song-info {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    letter-spacing: 0.05em; /* slight spacing for typewriter feel */
    color: #00f6ff;
    background: rgba(0, 30, 60, 0.6);
    padding: 20px 40px;
    border-radius: 12px;
    border: 2px solid #00f6ff;
    text-shadow: 0 0 8px #00f6ff;
    box-shadow: 0 0 20px #00f6ff, inset 0 0 10px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(8px);
  }

input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
    -webkit-appearance: none;
    appearance: none;
    background: #00ff00;
    height: 5px;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #00ff00;
    border-radius: 50%;
    cursor: pointer;
}

button {
    background-color: #000;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #00ff00;
    color: #000;
}

#playlist {
    max-height: 150px;
    overflow-y: auto;
    margin-top: 10px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
}

#playlist::-webkit-scrollbar {
    width: 10px;
}

#playlist::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 5px;
}

#playlist::-webkit-scrollbar-track {
    background: #000;
}

.playlist-item {
    list-style: none;
    padding: 5px;
    cursor: pointer;
    color: #00ff00;
}

.playlist-item:hover {
    background-color: rgba(0, 255, 255, 0.2);
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}

.playlist-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.playlist-text {
  flex: 1;
  font-size: 14px;
  color: #0FF;
}

/* 1. Force the volume slider to stay horizontal and clickable */
#music-player #volume {
    all: revert !important; /* Resets the DJ app's interference */
    -webkit-appearance: slider-horizontal !important; 
    appearance: auto !important;
    width: 100% !important;
    height: 15px !important;
    cursor: pointer !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 999 !important;
    background: #111 !important; /* Keep your dark theme */
    border: 1px solid #00ff00 !important;
}

/* 2. Ensure the thumb (the part you grab) is visible and works */
#music-player #volume::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    background: #00ff00 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
}

/* 3. Fix the layout row so DJ App buttons don't stack your player buttons */
#music-player .controls-row {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 5px !important;
}

#music-player .controls-row button {
    width: auto !important;
    flex: 1 !important;
}