/* Hide manual progress controls */
.gme-progress-update,
.gme-progress-slider {
  display: none !important;
}

/* Task progress bar styling */
.gme-tasks-progress-bar {
  display: block !important;
  height: 24px;
  background: rgba(0,0,0,0.5);
  border: 1px solid #333;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.gme-tasks-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff00, #00ffff);
  transition: width 0.3s ease;
}

.gme-tasks-progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.9em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  pointer-events: none;
}
