.confetti-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* Default fallback styles if controls are empty */
    background-color: #61ce70;
    color: #ffffff;
    border-radius: 4px;
    max-width: 100%;
}

.confetti-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.confetti-button:active {
    transform: translateY(1px);
}

.confetti-button-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px; /* Default spacing */
}

/* Alignment support */
.elementor-align-justify .confetti-button {
    width: 100%;
}
