.middle-info {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0; /* 防止撑开直播状态 */
}

.middle-info a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.middle-info .home,
.middle-info .away {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 70px; /* 控制文字和图标宽度 */
}

.middle-info .name {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.middle-info .vs {
  flex-shrink: 0;
}

/* 直播状态按钮 */
.btn-status {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  min-width: 60px;
}

/* 状态颜色 */
.btn-not-start {
  background-color: #8BC34A; /* 淡绿色 */
}

.btn-live {
  background-color: #f44336; /* 红色 */
}

.btn-ended {
  background-color: #9e9e9e; /* 灰色 */
}
