/* app.css — RebusApp */

html, body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
}

/* Smooth progress transitions */
.mud-progress-linear {
    transition: width 0.4s ease;
}

/* Kort-animasjon ved innlasting */
.mud-paper {
    animation: fadeInUp 0.2s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
