.music-toggle-ec5e7180 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #8b5cf6; /* default beautiful wedding purple */
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.music-toggle-ec5e7180:hover {
    transform: scale(1.1);
}

.music-hidden-ec5e7180 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* Spin animation for playing disc */
@keyframes spin-ec5e7180 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.music-playing-ec5e7180 {
    animation: spin-ec5e7180 4s linear infinite;
}
