body {
  font-family: "Inter", sans-serif;
}

/* Circle for inactive steps with border and smaller inner circle */
.circle-inactive {
  width: 40px;
  height: 40px;
  background-color: #d9d9d9;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d9d9d9 inset;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: black;
  font-size: 1.125rem;
  /* text-lg */
  user-select: none;
}

.circle-inactive::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d9d9d9 inset;
  position: absolute;
}


/* WhatsApp Floating Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
}