:root {
  --primary-color: #3171e0;
  --secondary-color: #f4f9ff;
  --light-color: #F9FBFC;
  --border-color: #e5e6ea;
  --white-color: #fff;
  --black-color: #1c3844;
  --body-bg: #F3F9FB;
  --final-btn: #FF5722;
  --prev-btn-bg: #DCE5EC;
  --ast-global-color-0: #1a6c7a;
}

/* Page layout */
#binding-calculator {
  background: var(--white-color);
  /* max-width: 400px; */
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--black-color);
  margin-top: 0;
  margin-bottom: 0;
}

#binding-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Form styles */
#binding-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.label-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #e5e6ea !important;
  border-radius: 6px !important;
  font-size: 1.2rem !important;
  color: var(--black-color) !important;
  background: white !important;
}

#input-group {
  display: flex;
  gap: 10px;
}

#bootSize {
  flex: 1;
  width: 94%;
}

/* Buttons */
.btn-primary {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 23px;
  font-weight: 600;
  width: 100%;
  margin-top: 25px;
  font-weight: 800;
  font-size: 23px;
  padding: 0.7rem 1.5rem;
}

.btn-primary:hover {
  background-color: #000f50;
}

#buyBtn {
  background: #f08706;
  font-weight: bold;
  font-size: 23px;
  border: #f08706c7 1px;
  box-shadow: 5px 5px lightblue;
  border-radius: 8px;
  width: 100%;
  color: white;
  background-color: var(--final-btn);
  border: 0px solid white;
  box-shadow: none;
  margin-top: 25px;
  font-weight: 800;
  font-size: 23px;
  padding: 0.7rem 1.5rem;
}

#buyBtn:hover {
  background-color: #8b0000;
  ;
}

/* Result box */
.result-box {
  margin-top: 20px;
  display: none;
  font-weight: 600;
  font-size: 21px;
  text-align: center;
}



.resut_short_text {
  margin-bottom: 0 !important;
  margin-top: 11px;
  color: var(--black-color);
  text-align: center;
  font-size: 20px;
}

.dot-loader {
  font-size: 24px;
  font-family: monospace;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: black;
  border-radius: 50%;
  opacity: 0;
  animation: blink 1.5s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

/* Glow + Size Pulse Animation */
@keyframes glowPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 8px #ff8800, 0 0 14px #ff8800;
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 18px #ffaa33, 0 0 30px #ffaa33;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px #ff8800, 0 0 14px #ff8800;
  }
}

/* Class added by JS */
.glow-pulse-btn {
  animation: glowPulse 1.4s infinite ease-in-out;
  transition: 0.25s ease-in-out;
}

