/**
 * Fashion Trends Colors CSS
 * File: css/fashion-trends-colors.css
 * 
 * Create this file in your module's css/ directory
 */

/* Color Trends Page Styles */
.color-trends-dashboard {
  min-height: 100vh;
  background: #f8f9fa;
}

/* Color Metrics Cards */
.color-metric-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.color-metric-card .metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}

/* Color Swatches */
.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-right: 10px;
}

.color-swatch-small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

/* Color Temperature Indicators */
.temperature-warm {
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
}

.temperature-cool {
  background: linear-gradient(45deg, #4ecdc4, #42a5f5);
}

.temperature-neutral {
  background: linear-gradient(45deg, #95a5a6, #bdc3c7);
}

/* Color Harmony Types */
.harmony-monochromatic { color: #3498db; }
.harmony-complementary { color: #e74c3c; }
.harmony-analogous { color: #2ecc71; }
.harmony-triadic { color: #f39c12; }
.harmony-split-complementary { color: #9b59b6; }

/* Color Trends List */
.color-trends-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.color-trend-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.color-trend-item:last-child {
  border-bottom: none;
}

.color-trend-name {
  font-weight: 600;
  margin-left: 12px;
  flex: 1;
}

.color-trend-percentage {
  font-size: 14px;
  color: #666;
  margin-left: auto;
}

/* Color Evolution Chart Container */
.color-evolution-container {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

/* Color Filter Pills */
.color-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.color-filter-pill {
  padding: 8px 16px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.color-filter-pill:hover,
.color-filter-pill.active {
  background: #1976d2;
  color: white;
}

/* Loading States */
.color-loading {
  text-align: center;
  padding: 40px;
  color: #666;
}

.color-loading::before {
  content: "🎨";
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

/* Error States */
.color-error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .color-trends-dashboard {
    padding: 10px;
  }
  
  .color-metric-card {
    padding: 16px;
  }
  
  .color-metric-card .metric-value {
    font-size: 24px;
  }
  
  .color-filters {
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .color-trends-dashboard {
    background: white;
  }
  
  .color-swatch {
    border: 1px solid #000 !important;
  }
}