.confirmation-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 24px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  width: 400px;
  opacity: 0;
  transition: all 0.3s ease;
}

.confirmation-popup.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.confirmation-message {
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.5;
  color: #333;
}

.confirmation-button {
  background-color: #3B82F6;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.confirmation-button:hover {
  background-color: #2563EB;
}

.confirmation-button:active {
  transform: scale(0.98);
}

.confirmation-error .confirmation-message { color: #EF4444; }
.confirmation-warning .confirmation-message { color: #F59E0B; }
.confirmation-success .confirmation-message { color: #10B981; }

@media (max-width: 480px) {
  .confirmation-popup {
    width: 85%;
    padding: 20px;
  }
  .confirmation-message {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .confirmation-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}