
.confirmation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.confirmation-overlay.show {
  opacity: 1;
}

.confirmation-content {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideInUp 0.5s ease-out;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: scaleIn 0.5s ease-out 0.2s both;
}

.confirmation-icon svg {
  width: 50px;
  height: 50px;
}

.confirmation-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  animation: slideDown 0.5s ease-out 0.3s both;
}

.confirmation-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
  animation: slideInUp 0.5s ease-out 0.4s both;
}

.confirmation-detail {
  background: var(--light-bg);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  animation: slideInUp 0.5s ease-out 0.5s both;
}

.confirmation-btn {
  padding: 12px 40px;
  margin-top: 25px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(51, 12, 179, 0.3);
  animation: slideInUp 0.5s ease-out 0.6s both;
}

.confirmation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(51, 12, 179, 0.4);
}

.confirmation-btn:active {
  transform: translateY(-1px);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 480px) {
  .confirmation-content {
    padding: 40px 25px;
    margin: 20px;
  }

  .confirmation-icon {
    width: 80px;
    height: 80px;
  }

  .confirmation-icon svg {
    width: 40px;
    height: 40px;
  }

  .confirmation-content h2 {
    font-size: 1.5rem;
  }

  .confirmation-content p {
    font-size: 0.95rem;
  }

  .confirmation-btn {
    padding: 11px 30px;
    font-size: 0.95rem;
  }
}

