/* ===== Countries list – 2 vertical columns, compact ===== */
.country-list{
  max-height:420px;           /* ίδιο ύψος με τον χάρτη */
  overflow-y:auto;
  display:grid;
  grid-template-columns: 1fr 1fr;   /* 2 ΣΤΗΛΕΣ */
  column-gap:20px;
  row-gap:2px;
}

.country-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:2px 0;
  font-size:0.75rem;
  text-decoration:none;
  color:inherit;
}

.country-name{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:150px;
}

.country-counts{
  display:flex;
  gap:8px;
  font-size:0.70rem;
  opacity:.85;
}

.country-counts span{
  min-width:42px;
  text-align:right;
}

@media (max-width: 991px){
  .country-list{
    grid-template-columns: 1fr;  /* 1 στήλη σε mobile */
  }
}

/* --- Profile cards (Entities & My Profile) --- */
.profile-card { overflow: hidden; border-radius: 16px; }
.profile-header{
  display:flex; gap:16px; align-items:center;
  padding:20px 22px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.10));
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.profile-avatar{
  width:72px; height:72px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:28px;
  background: rgba(11,18,32,.92);
  color:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.profile-head-meta{ min-width:0; }
.profile-name{ font-size:22px; font-weight:800; line-height:1.1; }
.profile-sub{ margin-top:6px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.profile-body{ padding:18px 22px 22px; }
.profile-section{ padding:14px 14px; border:1px solid rgba(0,0,0,.06); border-radius:14px; background:#fff; }
.profile-section-title{ font-weight:800; margin-bottom:10px; }

.profile-grid{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:8px 12px;
  font-size: 14px;
}
.profile-k{ color: rgba(0,0,0,.55); font-weight:700; }
.profile-v{ color: rgba(0,0,0,.88); font-weight:600; }

.profile-field{
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:12px 12px;
  background:#fff;
  height:100%;
}
.profile-field-label{ font-size:12px; font-weight:800; color: rgba(0,0,0,.55); }
.profile-field-value{ margin-top:6px; font-size:14px; font-weight:700; color: rgba(0,0,0,.88); word-break:break-word; }

@media (max-width: 575px){
  .profile-header{ padding:16px; }
  .profile-avatar{ width:60px; height:60px; border-radius:16px; font-size:24px; }
  .profile-name{ font-size:18px; }
  .profile-grid{ grid-template-columns: 100px 1fr; }
}
