.play-pause-widget-76157657 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffd1dc; /* Light soft pastel pink default */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    animation: rainbow-glow-76157657 3s infinite alternate;
}

.play-pause-widget-76157657 .icon-wrapper {
    color: #333;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed margin offsets for perfect centering with geometric icons */
}

@keyframes rainbow-glow-76157657 {
    0% { box-shadow: 0 0 10px 4px rgba(255, 105, 180, 0.4); }
    33% { box-shadow: 0 0 10px 4px rgba(255, 255, 102, 0.4); }
    66% { box-shadow: 0 0 10px 4px rgba(100, 149, 237, 0.4); }
    100% { box-shadow: 0 0 10px 4px rgba(152, 251, 152, 0.4); }
}

.play-pause-widget-76157657 audio {
    display: none;
}

@media (max-width: 767px) {
    .play-pause-widget-76157657 {
        bottom: 15px;
        right: 15px;
    }
}