#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
  display: none;
  z-index: 1000;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 400px;
  /* padding: 20px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* border-radius: 8px; */
  font-family: Arial, sans-serif;
  text-align: left;
}

#popup-header {
  border-top: 10px solid; /* Linha vermelha no topo */
  padding: 10px 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

#popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 50%;
  border: 1px solid;
  width: 1rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
}

#popup-close:hover {
  color: red; /* Cor do texto ao passar o mouse */
}

#popup-message {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 14px;
}
