/* Establecemos configuraciones iniciales para todo el sitio web */
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Honeywell Sans Web", Arial, Helvetica, sans-serif;
}

/* El div con id='root' es el siguiente contenedor despues del body, damos atributos de grilla para manejar el footer siempre abajo*/
#root {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}

html.honeywell-dark-theme .sidebar-layout>.content {
  padding-top: 16px !important;
}
