body {
  font-family: Arial, sans-serif;
  background-color: hsl(0, 0%, 100%);
  padding: 20px;
}

.conteiner_legendas {
  display: flex;
  flex-direction: column;
  max-width: fit-content;
  gap: 30px;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.subcontainer_legendas {
  display: flex;
  gap: 30px;
}

.legendas_lt {
  background-color: rgb(255, 174, 0);
  display: flex;
  align-items: top;
  flex-direction: column-reverse;
  padding: 10px;
  font-size: 12px;
  width: 120px;
  height: 120px;
  cursor: pointer;
  border-radius: 10px;
  border-style: none;
  stroke: none;
  -webkit-text-fill-color: #555;
  color: white;
}

.result {
  font-size: 30px;
  margin-left: 10px;
}

.subcontainer_botao {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.botao_acao {
  width: 35px;
  height: 35px;
  background-color: #09498d;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao_acao:hover {
  background-color: #f5b80f;
}

#fileStatus {
  font-size: 14px;
  color: #555;
}
