/* Estilos para o popup de confirmação */
.confirmation-popup {
  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: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.confirmation-popup.show {
  opacity: 1;
  visibility: visible;
}

.confirmation-popup-content {
  background-color: #1a1a1a;
  border: 2px solid #ff5500;
  border-radius: 8px;
  padding: 30px;
  max-width: 90%;
  width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.confirmation-popup.show .confirmation-popup-content {
  transform: scale(1);
}

.confirmation-popup p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.confirmation-popup .btn {
  background-color: #ff5500;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.confirmation-popup .btn:hover {
  background-color: #ff7730;
}
