/* ==================================================
   VDL Portal — Shared Styles
   ================================================== */

/* Alleen content fade-in (niet de fixed navbar) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.container {
    animation: fadeIn 0.3s ease-out;
}

/* Card hover */
.dash-card,
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dash-card:hover,
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* Button micro-animations */
.btn, button {
    transition: opacity 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn:hover, button:hover {
    transform: translateY(-1px);
}
.btn:active, button:active {
    transform: translateY(0);
}

/* Transparante logo's */
.logo-trans {
    mix-blend-mode: multiply;
    opacity: 0.95;
}
