body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e0f2fe, #4294ff);
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-container {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  stroke-width: 2;
  stroke: #3b82f6;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #3b82f6;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  position: relative;
}

.checkmark svg {
  width: 100%;
  height: 100%;
  transform: scaleX(-1) rotate(-90deg);
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #3b82f6;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #3b82f6;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 80px #e0f2fe;
  }
}

h1 {
  color: #1e40af;
  margin: 10px 0;
  font-size: 1.8rem;
}

.subtitle {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 25px;
}

.details {
  text-align: left;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 25px;
}

.details p {
  margin: 6px 0;
}

.actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.btn {
  text-decoration: none;
  display: inline-block;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.home-btn {
  background: #3b82f6;
  color: #fff;
}

.home-btn:hover {
  background: #1e3a8a;
}

.dash-btn {
  background: #e0f2fe;
  color: #1e3a8a;
  border: 1px solid #93c5fd;
}

.dash-btn:hover {
  background: #bfdbfe;
}
