/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Accordion */
.accordion-header {
  width: 100%;
  text-align: left;
  background-color: #c00a0a;
  color: white;
  padding: 15px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background-color: #3e0e8b;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f9f9f9;
}

.accordion-content.open {
  max-height: 500px;
}

.accordion-content-inner {
  padding: 20px;
}

/* Tablas */
.stats-table {
  width: 100%;
  border-collapse: collapse;
}

.stats-table th,
.stats-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.stats-table th {
  background-color: #f2f2f2;
  text-align: left;
}

/* Gráficas */
.chart-container {
  width: 100%;
  height: 300px;
}

/* Responsive */
@media (max-width: 576px) {
  .container {
    padding: 10px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 12px;
  }

  .accordion-content-inner {
    padding: 15px 10px;
  }

  .stats-table {
    display: block;
    overflow-x: auto;
    font-size: 0.85rem;
  }

  .stats-table table {
    width: 700px;
  }

  .chart-container {
    height: 200px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
