.infos {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin: 1rem auto 0;
}

.infos input {
  width: 70%;
  margin: 0 auto;
}

.infos button {
  margin: 0 auto;
  background-color: yellow;
  color: #000;
  padding: 0.5rem 1rem;
  width: 30%;

  font-weight: 700;

  cursor: pointer;
}

.infos button:hover {
  background-color: yellow;
  color: #000;
  transition: all 0.2s
}

.btn-refresh {
  display: none;
}

.lista-cep {
  background-color: #1D232A;
  width: fit-content;
  margin: 1rem auto 0;
  border-radius: 10px;

  display: none
}

.lista-cep th {
  color: yellow;
  padding: 1rem 2rem;
  border-bottom: 3px solid #15191C;
  font-weight: 700;  
  
  width: fit-content
}

.lista-cep td {
  color: gray;
  padding: 1rem 2rem;
  width: fit-content
}

.lista-cep th:first-child{
  border-right: 3px solid #15191C;
  width: auto;
}

.lista-cep td:first-child{
  text-align: left;
  border-right: 3px solid #15191C;
}

