#now-playing {
    font-family: sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin: 10px 0;
    z-index: 10;
    text-align: center;
}

#artist-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    

    padding: 3px; /* This creates space for the border */
    background: linear-gradient(45deg, 
        #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff);
    background-size: 400% 400%;
    animation: rainbowBorder 8s ease infinite;
}

@keyframes rainbowBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.radio-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.radio-btn:hover {
    background-color: #45a049;
}

.radio-btn:active {
    background-color: #3e8e41;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(2px);
}

#volumeSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 5px;
}

#volumeSlider:hover {
    opacity: 1;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
}

#volumeSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
}

#custom-player {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    z-index: 10;
}

#volume-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #888;
}

#volume-icon {
    font-size: 18px;
}

.player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

#custom-player {
    display: flex;
    align-items: center;
    gap: 20px;
}

#toggle-notes {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#toggle-notes:hover {
    background-color: #45a049; /* Darker green */
}

#player {
    z-index: 10;
    margin: 20px 0;
}

.note {
    position: absolute;
    font-size: 40px;
    color: white;
    opacity: 0.7;
    animation: fall 5s linear infinite, rotate 3s linear infinite;
}

@keyframes fall {
    0% { top: -50px; }
    100% { top: 100vh; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

text2 {
    font-family: sans-serif;
    font-size: 18px;
    color: #ffffff;
}