/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.pulse-animation {
    animation: pulse 1.5s infinite ease-in-out;
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pulse-animation:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
