/* Categories Analysis Styling */
.category-section {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
}

.category-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.category-section h3 {
  color: #374151;
  font-weight: 600;
}

.category-lines .line-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.category-lines .line-item:last-child {
  margin-bottom: 0;
}

.line-name {
  flex: 1;
  font-weight: 500;
  color: #4b5563;
}

.line-score {
  margin-left: 1rem;
  font-weight: 600;
  color: #1f2937;
  min-width: 3rem;
  text-align: right;
}

.score-bar {
  width: 6rem;
  height: 0.5rem;
  background-color: #f3f4f6;
  border-radius: 0.25rem;
  margin-left: 0.75rem;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 0.25rem;
}

/* Score color based on value */
.score-fill[style*="width: 0%"],
.score-fill[style*="width: 1%"],
.score-fill[style*="width: 2%"],
.score-fill[style*="width: 3%"] {
  background-color: #dc2626; /* Red for very low scores */
}

.score-fill[style*="width: 4%"],
.score-fill[style*="width: 5%"] {
  background-color: #ea580c; /* Orange-red for low scores */
}

.score-fill[style*="width: 6%"],
.score-fill[style*="width: 7%"] {
  background-color: #d97706; /* Orange for below average */
}

.score-fill[style*="width: 8%"],
.score-fill[style*="width: 9%"] {
  background-color: #ca8a04; /* Yellow-orange for average */
}

/* Default gradient for dynamic scores */
.score-fill {
  background: linear-gradient(to right, #dc2626 0%, #ea580c 25%, #d97706 50%, #ca8a04 75%, #16a34a 100%);
}
