#text-container {
  position: relative;
  width: 100%;
  /* Define a altura da tabela baseada no tamanho da letra (Ajuste aqui também) */
  height: 18px; 
  overflow: hidden;
  margin: 3px auto;
  display: flex;
  align-items: center;
}

#moving-text {
  position: absolute;
  font-size: 16px; /* TAMANHO DA LETRA */
  white-space: nowrap;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color:#ffffff !important; 
}

