.gpbfx-active {
    background-color: #2b8a3e !important;
    border-color: #2b8a3e !important;
    color: #fff !important;
    transition: background-color 0.2s ease, transform 0.15s ease;
    transform: scale(1.03);
    pointer-events: none;
    overflow: visible !important;
}

.gpbfx-active .gpbfx-check {
    font-style: normal;
    margin-right: 4px;
}

.gpbfx-confetti-wrapper {
    position: absolute;
    left: 0;
    top: -6px;
    width: 100%;
    height: 0;
    pointer-events: none;
    overflow: visible;
}

.gpbfx-confetti-piece {
    position: absolute;
    top: 0;
    width: 6px;
    height: 10px;
    border-radius: 1px;
    opacity: 0.95;
    animation: gpbfx-fall 0.55s ease-out forwards;
}

@keyframes gpbfx-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0;
    }
}
