/* --- Animated Pulse Button --- */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 116, 218, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(10, 116, 218, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 116, 218, 0);
        transform: scale(1);
    }
}

.btn-pulse {
    animation: pulse-animation 2s infinite;
}

.btn-pulse:hover {
    animation: pulse-animation 0.8s infinite;
}