/* Custom Dialog Styles */
.custom-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.2s;
}

.custom-dialog {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  max-width: 500px;
  width: 90%;
  animation: slideIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.custom-dialog-header {
  background: linear-gradient(135deg, #ff0080 0%, #9a00ff 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-dialog-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
}

.custom-dialog-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.custom-dialog-close:hover {
  background: rgba(255,255,255,0.2);
}

.custom-dialog-body {
  padding: 2rem;
  text-align: center;
}

.custom-dialog-footer {
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid #eee;
}

.custom-dialog-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s;
}

.custom-dialog-btn-primary {
  background: linear-gradient(to right, #ff0080, #9a00ff);
  color: white;
}

.custom-dialog-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(154, 0, 255, 0.3);
}

.custom-dialog-btn-secondary {
  background: #ddd;
  color: #333;
}

.custom-dialog-btn-secondary:hover {
  background: #ccc;
}

.custom-dialog-header.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.custom-dialog-header.warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.custom-dialog-header.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.custom-dialog-header.info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

