/* Wrapper */
.audio-mp3-wrapper-7a6f1eb2 {
    position: static;
}

/* Floating Play/Pause button — iPhone style */
.audio-mp3-btn-7a6f1eb2 {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: rgba(209, 184, 138, 0.7); /* Slightly transparent */
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s ease, background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    
    /* iPhone style glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.audio-mp3-btn-7a6f1eb2:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.audio-mp3-btn-7a6f1eb2:active {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: scale(0.96);
}

/* Icon visibility */
.audio-mp3-btn-7a6f1eb2 .icon-play,
.audio-mp3-btn-7a6f1eb2 .icon-pause {
    display: none;
    pointer-events: none;
}

.audio-mp3-btn-7a6f1eb2.is-paused  .icon-play  { display: block; }
.audio-mp3-btn-7a6f1eb2.is-playing .icon-pause { display: block; }
