/* src/styles.css */
:root {
  color-scheme: light;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  background: #f4f6f8;
  color: #1c2733;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
}
button,
input,
textarea,
select {
  font: inherit;
}
html,
body,
app-root {
  height: 100%;
}
html,
body {
  overflow: hidden;
}
app-root {
  display: block;
}
@media print {
  html,
  body,
  app-root {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
}
body.is-test-env::before {
  content: "AMBIENTE DE TESTES";
  position: fixed;
  top: 57px;
  right: -62px;
  background-color: #ff3b30;
  color: white;
  padding: 5px 50px;
  font-size: 13px;
  font-weight: bold;
  transform: rotate(45deg);
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
