/* Custom Thank You Modal Styles - Clean & Branded */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
  backdrop-filter: blur(4px);
}

.thank-you-content {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
  animation: slideInUp 0.4s ease-out;
  position: relative;
}

.thank-you-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.thank-you-content h3 {
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #3b82f6;
}

.thank-you-content p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.thank-you-button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.thank-you-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.thank-you-button:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .thank-you-content {
    padding: 24px 20px;
    margin: 16px;
    border-radius: 12px;
  }
  
  .thank-you-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .thank-you-content h3 {
    font-size: 18px;
  }
  
  .thank-you-content p {
    font-size: 14px;
  }
  
  .thank-you-button {
    padding: 10px 24px;
    font-size: 13px;
  }
} 