/* Identidade visual MoVeP
   Vermelho da marca #e30d0e -> #bf090c, tipografia Numans (igual ao painel MoVeP). */
@import url('https://fonts.googleapis.com/css2?family=Numans&display=swap');

:root {
  --movep-vermelho: #e30d0e;
  --movep-vermelho-escuro: #bf090c;
  --movep-escuro: #343a40;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Numans', 'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
}

.root { height: 100%; }

/* Indicador de carregamento na cor da marca */
.loader { border-right-color: var(--movep-vermelho) !important; }

/* Barra de rolagem discreta na cor da marca */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  background: var(--movep-vermelho-escuro);
  border-radius: 5px;
}
::-webkit-scrollbar-track { background: rgba(0,0,0,.06); }
