button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f1fff9;
  border: 1px solid #968f8f;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-size: 12px;
  text-align: center;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  width: 120px;
  margin: 5px;
}

button:hover {
  background-color: #f2f2f2;
  border-color: #a9ddf2;
}

textarea,
#editor,
input[type="text"],
input[type="number"] {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f8fcff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin: 5px;
  width: 80px;
}

input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus,
#editor:focus {
  outline: none;
  border-color: #a9ddf2;
  box-shadow: 0 4px 8px rgba(169, 221, 242, 0.5);
}

.clicavel {
  display: inline-block;
  margin-right: 10px;
  background-color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.clicavel:hover {
  background-color: #a9ddf2;
  color: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ccc;
  text-align: left;
  padding: 8px;
  height: 20px;
  max-width: 120px;
  /* white-space: nowrap;  Impede que o texto quebre */
  overflow: auto;
}

th {
  cursor: pointer;
  background-color: #f2f2f2;
}

/* Responsividade */
@media screen and (max-width: 600px) {
  th,
  td {
    display: table-cell;
  }
}

.dropdown {
  display: none;
  position: absolute;
  z-index: 1;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  overflow: auto;
  max-height: 100px;
}
.dropdown span {
  display: block;
  padding: 8px;
  cursor: pointer;
}
.dropdown span:hover {
  background-color: #ddd;
}

#listasUnicas {
  width: 98%; /* Largura fixa desejada */
  height: 200px; /* Altura fixa desejada */
  overflow: auto; /* Habilita as barras de rolagem quando necessário */
  border: 1px solid #ccc; /* Borda para visualização (opcional) */
  padding: 10px;
}

#listasUnicas > div {
  /* white-space: nowrap; */
  margin-bottom: 10px;
}
