body {
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #f2f2f2;
  padding: 10px;
}

h4 {
  margin-bottom: 10px;
  font-size: 16px;
}
.invaliduuid h4,
.sucesso h4 {
  margin-bottom: 20px;
}

#nps-container {
  text-align: center;
  border-radius: 15px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 70%; /* Adicione isso para dar mais espaço para os quadrados se alinharem lado a lado */
}

.question {
  margin-bottom: 20px;
}

.questions {
  display: none;
}

.nps-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Isso faz com que os quadrados se envolvam quando não houver espaço suficiente */
  margin-top: 0px;
}

.box {
  width: 40px;
  height: 40px;
  margin: 5px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #0890b3;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.6s;
  flex: none; /* Adicione isso para evitar que os quadrados se estiquem */
}
.question label {
  display: block;
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
}
.invaliduuid {
  display: none;
}

textarea {
  width: min(80%, 572px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Arial", sans-serif;
  resize: vertical;
}

button#sendButton {
  margin-top: 0px;
  padding: 15px 100px;
  background-color: #10b6e2;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  display: none;
}

button#sendButton:hover {
  background-color: #0890b3;
}

@media screen and (max-width: 600px) {
  .box {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.red {
  background-color: #10b6e2;
  color: white;
}

.yellow {
  background-color: #10b6e2;
  color: white;
}

.green {
  background-color: #10b6e2;
  color: white;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 151, 255, 0.7); /* Escurece o fundo */
  z-index: 1000; /* Garante que o overlay fique acima de outros elementos */
  display: flex;
  justify-content: center; /* Centraliza o GIF horizontalmente */
  align-items: center; /* Centraliza o GIF verticalmente */
}

#loadingGif {
  width: 35px; /* Ou qualquer tamanho que preferir */
  height: 35px; /* Ou qualquer tamanho que preferir */
}

.dotted {
  border: none;
  border-top: #ccc dotted 2px;
  background-color: transparent;
}
