/* Arquivo: popup.css */

/* Estilos do fundo do popup */
#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none; /* Inicialmente escondido */
}

/* Estilos do conteúdo do popup */
#popupContent {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

#popupContent h2 {
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}

#popupContent p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Estilos do botão de fechar */
#closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #999;
  cursor: pointer;
}

#popupButton {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

#popupButton:hover {
  background-color: #0056b3;
}

