/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide-in animation */
@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Define the pulse animation */
@keyframes pulse-color {

    0%,
    100% {
        font-weight: normal;
        opacity: 1;
        color: #3498db;
        /* A nice blue */
    }

    50% {
        font-weight: bold;
        opacity: 0.8;
        color: #e74c3c;
        /* A contrasting red */
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%);
    }
}

/* Class to apply the pulse animation to the info icon */
.animate-info-icon {
    animation: pulse-color 1s infinite ease-in-out;
}
