/* Border and animation styles */
.blinking-border-red {
    border: 2px solid red; /* Red border color */
    transition: 0.5s;
    animation: blinker 1s linear infinite; /* Loops the blink every 1 second */
}

.blinking-border-green {
    border: 2px solid #00B958; /* Red border color */
    transition: 0.5s;
    animation: blinker 1s linear infinite; /* Loops the blink every 1 second */
}

.blinking-border-orange {
    border: 2px solid #EA9400; /* Red border color */
    transition: 0.5s;
    animation: blinker 1s linear infinite; /* Loops the blink every 1 second */
}
@keyframes blinker {
    50% {
        border-color: transparent; /* Border becomes invisible halfway through the cycle */
    }
}