@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
    opacity: 1;
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out;
    opacity: 0;
}
