@tailwind base;
@tailwind components;
@tailwind utilities;

@keyframes blink {
    50% {
        border-color: transparent; /* Blink effect */
    }
}

.animate-blink {
    animation: blink 1s step-end infinite; /* Blinking cursor */
}