/* Floating Music Control Wrapper */
.wrsvp-music-control {
    position: fixed;
    z-index: 9999;
    /* Default spacing */
    bottom: 20px;
    right: 20px;
}

/* Positions */
.wrsvp-pos-bottom-right {
    bottom: 20px;
    right: 20px;
}

.wrsvp-pos-bottom-left {
    bottom: 20px;
    left: 20px;
}

.wrsvp-pos-top-right {
    top: 20px;
    right: 20px;
}

.wrsvp-pos-top-left {
    top: 20px;
    left: 20px;
}

/* The Button */
.wrsvp-music-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.wrsvp-music-btn:hover {
    transform: scale(1.1);
}

/* Rotating Animation when playing */
.wrsvp-music-playing {
    animation: wrsvpSpin 4s linear infinite;
}

/* Icon overrides if needed */
.wrsvp-music-btn i {
    pointer-events: none;
}

/* Pause State (Optional: Pulse or different look) */
.wrsvp-music-paused {
    opacity: 0.8;
}

@keyframes wrsvpSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wrsvp-music-control {
        bottom: 15px;
        right: 15px;
    }

    .wrsvp-pos-bottom-left {
        bottom: 15px;
        left: 15px;
    }

    /* Avoid overlap with other floaters if needed */
}