.fixture-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    font-family: Arial, sans-serif;
  }
  .fixture-header {
    background-color: #06b6d4;
    color: white;
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  .rounds-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }
  .round-button {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #f3f4f6;
    cursor: pointer;
  }
  .round-button.active {
    background-color: #06b6d4;
    color: white;
  }
  .fecha-header {
    text-align: center;
    margin-bottom: 0;
  }
  .date-header {
    background-color: #f3f4f6;
    padding: 0.5rem;
    margin: 0.5rem 0;
    font-weight: 500;
  }
  .match {
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem;
  }
  .match-teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .team-name {
    width: 150px;
  }
  .team-home {
    text-align: right;
  }
  .team-away {
    text-align: left;
  }
  .match-score {
    display: flex;
    gap: 0.5rem;
    font-weight: bold;
  }
  .match-info {
    text-align: center;
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .red {
    color: #dc3545;
  }