/* Add to Setup.css */
.flare {
    position: relative;
    display: inline-block;
    animation: flareGlow 2s ease-out forwards;
}

@keyframes flareGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }

    50% {
        box-shadow: 0 0 40px 10px rgba(255, 215, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}
