/* Summary Section Styles */
.standings-summary {
  background: rgba(13, 44, 64, 0.7);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.summary-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.summary-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.summary-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-value {
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 152, 219, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.team-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.stat-highlight {
  display: inline-block;
  background: rgba(52, 152, 219, 0.2);
  color: var(--rpl-blue);
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 0.9rem;
}
