/* Progress Bar Styles */
.resource-display {
  margin: 0.25rem 0;
}

.resource-progress {
  position: relative;
  width: 100%;
  height: 1.5rem;
  background-color: #e5e7eb;
  border-radius: 0.375rem;
  overflow: hidden;
}

.resource-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

.resource-progress-bar.consumed {
  background-color: #ef4444;
}

.resource-progress-bar.generated {
  background-color: #10b981;
}

.resource-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
}

.resource-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}

.resource-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.resource-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.125rem;
}