/* ========================================
   MODALS - MODAL DIALOG STYLES
   This file contains all modal-related styles including:
   - Success modal overlay
   - Modal content styling
   - Modal icons and animations
   - Modal buttons and interactions
   ======================================== */

/* ==================== SUCCESS MODAL ==================== */

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.success-content {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  max-width: 500px;
  color: white;
  animation: scaleIn 0.5s ease-out;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: iconBounce 1s ease-in-out;
}

.success-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.success-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-content .btn {
  background: white;
  color: #3b82f6;
  padding: 15px 40px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-content .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
