/* App-specific styles. Theming, layout, and component styling now come from
   MudBlazor (see MainLayout.razor's MudTheme). This file holds only the few
   bits MudBlazor doesn't cover. */

html, body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* Home dashboard tiles are wrapped in a plain <a> so Blazor's router handles
   the click (MudCardActionArea's own navigation proved unreliable here). */
.orch-tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.orch-tile {
    transition: box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.orch-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
