/* Success Modal Styles */
.success-modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.success-icon {
  font-size: 60px;
  color: #28a745;
  animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-modal-content .modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* Responsive adjustments for success modal */
@media (max-width: 576px) {
  .success-modal-content {
    margin: 10px;
  }
  
  .success-icon {
    font-size: 48px;
  }
  
  .success-modal-content .modal-title {
    font-size: 18px;
  }
}
