@layer base, tokens, layout, components, content, themes, vendor;

@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: var(--font-body), sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-on-primary);
  }

  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
  }

  p, ul, ol, dl, figure, blockquote, pre {
    margin: 0;
    padding: 0;
  }

  ul, ol { list-style: none; }

  img, svg { display: block; max-width: 100%; }

  button, input, select, textarea {
    font: inherit;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    color: inherit;
  }

  a { color: inherit; text-decoration: none; }

  [hidden] { display: none !important; }
  .hidden { display: none; }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  body.composers-layout,
  body.admin-layout,
  body.auth-layout {
    min-height: 100vh;
    background: var(--gradient-flag), url("/flag.jpg") no-repeat fixed bottom;
    background-size: cover;
  }
}

.turbo-progress-bar {
  height: 4px !important;
  background: var(--prim-white-muted) !important;
  box-shadow: 0 0 10px var(--prim-white-muted) !important;
}
