.pulsing-button {
    background-color: #00FF00 !important;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
}
