/* Styling untuk Tombol Floating */
.music-player-toggle-btn {
    position: fixed; /* Membuat tombol tetap di layar */
    bottom: 20px;    /* Jarak dari bawah */
    left: 20px;      /* Jarak dari kiri */
    z-index: 9999;   /* Pastikan berada di atas konten lain */
    
    /* Styling Visual */
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%; /* Bentuk bulat */
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.music-player-toggle-btn:hover {
    background-color: #555;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .music-player-toggle-btn {
        bottom: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}