#nextMatch {
  padding: 14px 18px;
  border: 2px solid #1f2933;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  max-width: 340px;
  background: #f8fafc;
  line-height: 1.4;
}

/* Countdown text */
#countdown {
  font-weight: 700;
  color: #16a34a;
}

/* Progress bar wrapper */
.progress-wrap {
  margin-top: 8px;
  background: #e5e7eb;
  border-radius: 8px;
  height: 10px;
  overflow: hidden;
}

/* Progress bar fill */
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  transition: width 0.5s ease;
}
.team-badge {
  height: 24px !important; /* force height */
  width: auto !important;   /* maintain aspect ratio */
  max-width: 100%;          /* prevent overflow */
  display: inline-block;    /* ensures size rules apply */
  vertical-align: middle;
  margin: 0 6px;
}


/* Responsive sizes */
@media (max-width: 768px) {
  .team-badge {
    height: 18px;
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  .team-badge {
    height: 14px;
    margin: 0 2px;
  }
}
