/* Base styles for the Blazor WASM app — most theming comes from MudBlazor.
 * This file just sets the page background + a font fallback before MudBlazor loads. */
html, body {
  margin: 0;
  background: #0d0d0d;
  color: #e8eaed;
  font-family: 'Pretendard', 'Pretendard Variable', 'Noto Sans KR',
               -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1:focus { outline: none; }

#blazor-error-ui .dismiss { float: right; cursor: pointer; }
