.card strong {text-transform:uppercase;color:#0897b2;}


#raceTabs {
  display: flex;
  flex-wrap: wrap;  
  gap: 12px;
  padding: 10px;
}


.tab {
  padding: 8px 12px;
  background: #eee;
  border-radius: 10px;
  cursor: pointer;

  flex: 1 1 auto;       
  text-align: center;
  min-width: 120px;      
}

@media (max-width: 600px) {
  .tab {
    flex: 1 1 calc(50% - 8px); /* 2 per row */
  }
}

.tab.active {
  background: #fe8c5a;
  color: #fff;
}

#raceContent {
  padding: 10px;
}

.group {
  margin-bottom: 20px;
}

.group h3 {
  margin-bottom: 8px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}

.card {
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #f9f9f9;
}

.pair {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 8px;
  align-items: baseline;
  margin-bottom: 4px;
}

.entrant-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.entrant-value {
  min-width: 0;
}