.progress-container {
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.progress-row:last-child {
  margin-bottom: 0;
}

.progress-label {
  flex: 0 0 200px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.4;
}

.progress-bar-wrapper {
  flex: 1;
  height: 30px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
  background-color: #10b981; /* Hijau */
  transition: width 0.6s ease-in-out;
  animation: progressAnimation 1s ease-out;
}

.progress-bar-remaining {
  background-color: #ef4444; /* Merah */
  flex: 1;
}

.progress-percentage {
  flex: 0 0 70px;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

@keyframes progressAnimation {
  from { width: 0; }
}