.animate-fade-in {
    animation: fadeIn 0.25s ease-out forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Navbar active link stili */
.nav-link.active {
    color: white;
    font-weight: bold;
}