/* Text Contrast Fixes for Improved Readability */

/* Environment Module - Dark text on mint green backgrounds */
.environment-bg-text {
  color: #005030 !important;
  font-weight: 600;
}

.environment-score {
  background-color: rgba(167, 243, 208, 0.85) !important;
  color: #003020 !important;
  font-weight: 700 !important;
}

/* Wellness Module - Dark text on pastel purple backgrounds */
.wellness-bg-text {
  color: #3a1d86 !important;
  font-weight: 600;
}

.wellness-score {
  background-color: rgba(196, 181, 253, 0.85) !important;
  color: #2e1068 !important;
  font-weight: 700 !important;
}

/* Kitchen Module - Dark text on light pink backgrounds */
.kitchen-bg-text {
  color: #9d174d !important;
  font-weight: 600;
}

.kitchen-score {
  background-color: rgba(253, 164, 175, 0.85) !important;
  color: #831843 !important;
  font-weight: 700 !important;
}

/* Wardrobe Module - Dark text on light yellow backgrounds */
.wardrobe-bg-text {
  color: #854d0e !important;
  font-weight: 600;
}

.wardrobe-score {
  background-color: rgba(253, 230, 138, 0.85) !important;
  color: #713f12 !important;
  font-weight: 700 !important;
}

/* Marketplace Module - Dark text on light blue backgrounds */
.marketplace-bg-text {
  color: #0c4a6e !important;
  font-weight: 600;
}

.marketplace-score {
  background-color: rgba(186, 230, 253, 0.85) !important;
  color: #0c4a6e !important;
  font-weight: 700 !important;
}

/* Text overlay for card images */
.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
  color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

/* Improved module card headers */
.module-card-header {
  padding: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem 0.5rem 0 0;
}

.module-card-header.environment {
  background-color: rgba(167, 243, 208, 0.2);
  color: #a7f3d0;
  border-bottom: 2px solid #a7f3d0;
}

.module-card-header.wellness {
  background-color: rgba(196, 181, 253, 0.2);
  color: #c4b5fd;
  border-bottom: 2px solid #c4b5fd;
}

.module-card-header.kitchen {
  background-color: rgba(253, 164, 175, 0.2);
  color: #fda4af;
  border-bottom: 2px solid #fda4af;
}

.module-card-header.wardrobe {
  background-color: rgba(253, 230, 138, 0.2);
  color: #fde68a;
  border-bottom: 2px solid #fde68a;
}

.module-card-header.marketplace {
  background-color: rgba(186, 230, 253, 0.2);
  color: #bae6fd;
  border-bottom: 2px solid #bae6fd;
}

/* High contrast scores */
.large-score {
  font-size: 1.75rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}