.stat-box {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.country-list-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;        /* rounded corners */
  padding: 1rem;              /* space around heading + list */
  flex-shrink: 0; /* prevent it from stretching in flex row */
}

.country-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* subtle divider */
}

.country-list li:last-child {
  border-bottom: none;
}

.country-list li span.country-name {
  font-weight: 500;
}

.country-list li span.country-count {
  opacity: 0.7;
  margin-left: 6px;
}

