/* Progress Bars Component Styles */

.hft-wrapper {
  font-family: 'Poppins', sans-serif;
  background: transparent;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 1rem;
  color: #1b1b1b;
}

.hft-container {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

/* Progress Bar Styles */
.hft-step {
  display: none;
  margin-top: 1.5rem;
  text-align: left;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

@media (min-width: 640px) {
  .progress-title { font-size: 1rem; }
}

.progress-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.progress-percentage {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4caf50;
  display: none;
}

.check-icon {
  display: none;
  color: #4caf50;
}

.check-icon svg {
  width: 20px;
  height: 20px;
}

.progress-container {
  width: 100%;
  height: 1rem;
  background-color: #e9ecef;
  border-radius: .25rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: #4caf50;
  border-radius: .25rem;
  transition: width 3s linear;
}

.hft-show {
  display: block !important;
}

/* Popup */
.hft-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  padding: 1rem;
}

.hft-popup-box {
  background: #fff;
  width: 100%;
  max-width: 22rem;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.hft-popup-title {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  margin: 0 0 0.5rem;
}

.hft-popup-msg {
  font-size: 1.2rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.45;
  margin: 0 0 1.25rem;
}

.hft-popup-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hft-popup-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.hft-popup-btn.yes {
  background: #28a745;
  color: #fff;
}

.hft-popup-btn.yes:hover {
  background: #218838;
}

.hft-popup-btn.no {
  background: #dc3545;
  color: #fff;
}

.hft-popup-btn.no:hover {
  background: #c82333;
}

