/* capsicaura.css - Styles du projet Capsicaura */

.capsicaura-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 1400px;
  margin: 0 auto;
}

.capsicaura-header {
  border-bottom: 3px solid #e74c3c;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.capsicaura-header h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.capsicaura-header h2 {
  color: #7f8c8d;
  font-size: 1.5rem;
}

/* Sections spécifiques Capsicaura */
.forms-section h3,
.events-section h3,
.dashboards-section h3 {
  color: #e74c3c;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #e74c3c;
}

/* Dashboard cards spécifiques Capsicaura */
.capsicaura-container .dashboard-card {
  border-color: #e74c3c;
}

.capsicaura-container .dashboard-card:not(.disabled):hover {
  background: #e74c3c;
  border-color: #c0392b;
}

/* ============================================
   STATS CARDS CAPSICAURA
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.capsicaura-container .stat-card {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   CHARTS CAPSICAURA
   ============================================ */
.chart-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.chart-container h3 {
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.chart-container canvas {
  max-height: 400px;
}

.monthly-chart-section {
  margin: 3rem 0;
}

.monthly-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .charts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .monthly-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .charts-grid {
    grid-template-columns: 1fr;
  }
}
