﻿.fade-in {
    animation: fadeInBottom 0.5s ease-in-out;
}

@keyframes fadeInBottom {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .toolbar-fix {
        left: 0;
        right: 0;
        bottom: 0;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

        .toolbar-fix a,
        .toolbar-fix button {
            width: 100%;
        }
}
