.teams {
  #teams {
    display: flex;
    flex-direction: column;
    #poolA, #poolB {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }
  }
}

#fixtures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
  margin-bottom: 50px;
  .card {
    flex: 1 1 500px;
    max-width: 768px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    img {
      width: 60px;
      height: 60px;
    }
    .head {
      background-color: var(--theme-primary-color);
      color: var(--theme-secondary-color);
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      padding: 12px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      .date-pill {
        margin-left: 8px;
        background-color: var(--theme-secondary-color);
        color: var(--theme-primary-color);
        border-radius: 10px;
        padding: 4px;
      }
    }
    .details {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 24px 12px 24px 12px;
      .teamDiv {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
      }
      .versus {
        border-radius: 50%;
        background-color: orangered;
        width: 40px;
        height: 40px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }
  }
}
