/* Progress Badge Component */

.progress-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background-color: #4a4a4a;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 0;
  transition: width 0.3s ease;
  background-color: rgba(20, 20, 20, 0.7);
}

.progress-badge-text,
.progress-badge-subtext {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.progress-badge-subtext {
  font-size: 0.75rem;
  opacity: 0.9;
}
