
body {
  font-family: 'Roboto', sans-serif;
  background-color: transparent; /* Fundo transparente */
  margin: 0;
  padding: 0;
}

.container {
  margin-top: 50px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  width: 120px;
  margin-bottom: 10px;
}

h4 {
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.input-field input[type="text"],
.input-field select {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ddd;
}

.input-field label {
  font-size: 14px;
  color: #666;
}

.btn {
  background-color: #009688;
  color: white;
  border-radius: 5px;
  font-weight: 500;
  padding: 10px 20px;
  margin-top: 20px;
}

.btn-small {
  background-color: #e91e63;
  margin-top: 10px;
  font-weight: 400;
}

.modal {
  max-width: 400px;
  padding: 20px;
}

.modal .modal-content h4 {
  font-size: 22px;
}

.modal .input-field input {
  margin-bottom: 20px;
}

.modal .btn {
  width: 100%;
  margin-top: 20px;
}

.toast {
  font-size: 14px;
}

#reviews-container {
    max-height: 80vh; /* Ajuste a altura conforme necessário */
    overflow-y: auto; /* Adiciona a barra de rolagem vertical */
    border: 1px solid #ccc; /* Opcional: apenas para visualização */
    padding: 10px;
    background: #f9f9f9; /* Opcional: cor de fundo para destacar a área */
    border-radius: 5px;
}

.select-dropdown.dropdown-content {
  min-width: 250px !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
}

svg.caret {
  display: none !important;
}

/* opcional: input visível do select */
.select-dropdown {
  max-width: 100%;
}

/* 1) Permite que fique maior que o select, sem restringir à largura do input */
.select-wrapper .dropdown-content.select-dropdown {
  width: auto !important;
  min-width: 250px !important;    /* ajuste pro mínimo que precisa */
  max-width: none !important;      /* sem limite máximo */
  left: 0 !important;              /* garante que comece alinhado à esquerda */
}

/* 2) Se quiser que ele sempre tenha pelo menos a largura do select */
.select-wrapper .dropdown-content.select-dropdown {
  min-width: 100% !important;
}

/* 2) Garanta que os botões fiquem acima do wrapper */
.row > .col.s2 {
  position: relative;
  z-index: 1;
}

#popupAcesso {
  display: none;
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-align: center;
  width: 90%;
  max-width: 500px;
}

#popupAcesso h5 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #333;
}

#popupAcesso input[type="password"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  box-sizing: border-box;
}

#popupAcesso button {
  margin-top: 20px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#popupAcesso button:hover {
  background-color: #00796b;
}
