#donation-progress-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.progress-container {
  background: var(--color-surface, #2a2a2a);
  border: 1px solid var(--color-border, #444);
  border-radius: var(--radius, 8px);
  padding: 20px 24px;
  margin: 20px 0;
}
.progress-container h3 {
  text-align: center;
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--color-text, #e0e0e0);
}
.progress-bar-wrapper {
  background: #1a1a1a;
  border-radius: 4px;
  height: 24px;
  position: relative;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #43a047, #66bb6a);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
  transition: width 0.5s;
}
.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 14px;
  color: white;
  text-shadow: 0 1px 2px black;
}
#donation-progress-container { display: block !important; }
