/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page-content>* {
    animation: fadeIn 0.35s ease both;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}