.animate-fade-messages > span {
    display: none;
}

.animate-fade-messages > span.active {
    display: flex;
    animation: fadeInOut 4s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    20%, 80% {
        opacity: 1;
    }
}

*:focus {
    outline: 2px solid #FFA07A;
    outline-offset: 2px;
}

/* Update default text colors */
.text-gray-400 {
    color: rgba(255, 255, 255, 0.9);
} 