.frete-calculador {
  font-family: Arial, sans-serif;
  margin-top: 15px;
}

.frete-calculador label {
  font-weight: bold;
  margin-right: 10px;
}

.frete-wrapper {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  width: fit-content;
  margin-top: 5px;
}

.frete-wrapper input {
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  width: 120px;
}

.frete-wrapper button {
  border: none;
  background-color: white;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.frete-wrapper button:hover {
  color: #007bff;
}

#resultado-frete {
  margin-top: 10px;
  font-size: 14px;
}
