/* Progress Bar Styles */

.progress-bar-container {
  width: 100%;
  margin: 10px 0;
}

.progress-bar-label {
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 4px;
  color: #f39c12;
  /* Orange to match theme */
}

.progress-bar-track {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill.animated {
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-size: 20px 20px;
  animation: progressBarStripes 1s linear infinite;
}

@keyframes progressBarStripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 20px 20px;
  }
}

.progress-bar-text {
  color: white;
  font-size: 0.75em;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.progress-bar-stats {
  font-size: 0.8em;
  color: #95a5a6;
  /* Light grey for dark theme */
  margin-top: 4px;
  text-align: right;
}

/* Color variants */
.progress-bar-fill.success {
  background-color: #27ae60;
}

.progress-bar-fill.warning {
  background-color: #f39c12;
}

.progress-bar-fill.danger {
  background-color: #e74c3c;
}

.progress-bar-fill.info {
  background-color: #3498db;
}