.blcs-status-tracker {
  display: flex;
  align-items: center;  /* Keep circles & lines centered vertically in one row */
  justify-content: center;
  gap: 20px;
}

.blcs-status-tracker .step {
  position: relative;
  width: 40px;
  height: 60px; /* Enough for the 40px circle plus ~20px for the label */
}

.blcs-status-tracker .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Absolutely position the label within the step container */
.blcs-status-tracker .label {
  position: absolute;
  left: 50%;
  top: 45px; /* or top: calc(100% - 15px) etc. */
  transform: translateX(-50%);
  font-size: 14px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}

.blcs-status-tracker .line {
  width: 80px;
  height: 4px;
  align-self: center; /* Keep line in the circle's vertical center */
  background-color: #0066FF;
}

/* Compact mobile view: Step X of Y with two circles */
.blcs-status-tracker-compact {
  display: none;
  align-items: center;
  gap: 10px;
}

.blcs-status-tracker-compact .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blcs-status-tracker-compact .compact-text {
  font-size: 14px;
  color: #333333;
}

@media (min-width: 769px) {
  .blcs-status-tracker {
    display: flex;
  }
  .blcs-status-tracker-compact {
    display: none;
  }
}

@media (max-width: 768px) {
  .blcs-status-tracker {
    display: none;
  }
  .blcs-status-tracker-compact {
    display: flex;
  }
}

.blcs-email-settings .blcs-email-settings-section {
  margin-top: 1.5rem;
}

.blcs-email-settings .blcs-email-settings-heading {
  margin: 0 0 0.5rem;
}

.blcs-email-settings .blcs-email-settings-section-desc {
  margin: 0 0 1rem;
}

.blcs-email-settings .blcs-email-format-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.blcs-email-settings .blcs-email-format-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.blcs-email-settings .blcs-email-format-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  white-space: nowrap;
}
