.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-card {
  background: var(--wp-blanc, #ffffff);
  border: 1px solid var(--wp-gris-300, #e5e7eb);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dashboard-card--wide {
  grid-column: span 2;
}

.dashboard-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--wp-gris-800, #1f2937);
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--wp-gris-200, #e5e7eb);
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .dashboard-card--wide {
    grid-column: span 1;
  }
}
.dashboard-card canvas {
  height: 300px !important;
  max-height: 300px;
  width: 100% !important;
}
.dashboard-card canvas {
  height: auto !important;
  max-height: 350px;
  width: 100% !important;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 24px;
  padding: 20px;
}

.dashboard-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.dashboard-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #2C6E8E;
  font-size: 1.2rem;
}

.dashboard-card--wide {
  grid-column: 1 / -1;
}

.dashboard-error {
  background: #f8d7da;
  color: #721c24;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.chart-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}