.brxe-boring-free-shipping-progress {
  display: flex;
  flex-direction: column;
}

/* Add margin only when progress bar is shown after message */
.brxe-boring-free-shipping-progress .message + .progress-container,
.brxe-boring-free-shipping-progress .message + .bar-chart-container {
  margin-top: 10px;
}

/* Simple Progress Bar Style */
.brxe-boring-free-shipping-progress .progress-container {
  position: relative;
  width: 100%;
  min-width: 160px;
  height: 20px;
  overflow: hidden;
  display: block;
  background-color: #f0f0f0;
}

.brxe-boring-free-shipping-progress .progress-bar {
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 8px;
  background-color: #4caf50;
  transition: width 0.3s ease-in-out;
  display: block;
}

/* Bar Chart Style */
.brxe-boring-free-shipping-progress .bar-chart-container {
  position: relative;
  width: 100%;
  min-width: 160px;
  height: 20px;
  margin: 0 0 30px;
  overflow: visible;
  display: block;
  background-color: #f0f0f0;
  border-radius: inherit;
}

.brxe-boring-free-shipping-progress .bar-chart-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 8px;
  background-color: #4caf50;
  transition: width 0.3s ease-in-out;
  display: block;
  border-radius: inherit;
}

.brxe-boring-free-shipping-progress .bar-chart-markers {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 8px 4px 0;
  box-sizing: border-box;
}

.brxe-boring-free-shipping-progress .bar-chart-markers span {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}
