/* 🌈 ULTIMATE PREMIUM AUDIO PLAYER DESIGN */
.easyaudio-player-container {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px;
    background: rgba(211, 184, 184, 0);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 255, 255, 0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 🎛️ CUSTOM AUDIO PLAYER */
audio {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, #ff00ff, #ff8c00);
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(255, 140, 0, 0.8);
    transition: box-shadow 0.3s ease-in-out;
}

/* 🎵 Custom Play Button */
audio::-webkit-media-controls-play-button {
    filter: invert(1);
    transition: transform 0.3s ease-in-out;
}

audio::-webkit-media-controls-play-button:hover {
    transform: scale(1.4);
}

/* 🔵 Progress Bar */
audio::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.7);
    height: 5px;
    border-radius: 5px;
}

/* 🚫 REMOVE DOWNLOAD BUTTON */
audio::-webkit-media-controls-download-button {
    display: none !important;
}


audio::-webkit-media-controls-play-button {
    filter: invert(1); /* Yeh by default white bana dega */
    background-color: #007bff !important; /* 💙 Blue Play Button */
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
}



/* 📱 FULL RESPONSIVE */
@media (max-width: 768px) {
    .easyaudio-player-container {
        padding: 15px;
    }

    audio {
        max-width: 100%;
    }
}
