.caixa-ajuste-imob {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.conteudo-ajuste-imob {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 320px;
}
.grupo-entrada {
  margin-bottom: 12px;
}
.grupo-entrada label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}
.grupo-entrada input,
.grupo-entrada select {
  width: 95%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s ease;
}
.grupo-entrada input:focus,
.grupo-entrada select:focus {
  border-color: #5a5a5a;
  outline: none;
}
.grupo-botoes {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.botao-fechar-ajuste,
.botao-confirmar-ajuste {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.botao-fechar-ajuste {
  background: #ff4d4d;
  color: white;
}
.botao-fechar-ajuste:hover {
  background: #d43d3d;
}
.botao-confirmar-ajuste {
  background: #50a36d;
  color: white;
}
.botao-confirmar-ajuste:hover {
  background: #3d8254;
}
