.score-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
  width: 30%; /* Adjust width as needed */
  box-sizing: border-box;
}

.score-box {
   /*  display: flex; */ 
  justify-content: flex-end;
  align-items: center;
  width: 30%;
  /* min-width: 120px; */
}

.score-table {
  border-collapse: collapse;
  text-align: center;
  width: auto;
}

.score-table th {
  font-size: 9px;
  font-weight: normal;
  color: white;
  padding-bottom: 4px;
}

.score-table td {
  padding: 4px 10px;
}


/* Base score circle */
.score-circle {
  font-weight: bold;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: transparent;
  color: white;
}

/* DNQ special styling */
.score-circle.dnq {
  color: #e50914;       /* Eurovision red */
  border-color: #e50914; /* Red border */
  font-size: 10px;       /* Slightly smaller text for DNQ */
}

.circle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  gap: 4px; /* reduced horizontal gap between SF and F */
}

.circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 24px;
}

.circle-label {
  font-size: 0.6rem;
  color: #ccc;
  margin-bottom: 12px; /* tighter spacing between label and image */
  line-height: 1;
  text-align: center;
}

.circle-icon {
  width: 24px;       /* 20% smaller than 26px base */
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
