/* ══════════════════════════════════════════
   Nationality Person Icons — SVG-based
══════════════════════════════════════════ */

/* Base wrapper */
.person-icon {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0; position: relative;
}
.person-icon svg { display: block; }

/* Saudi adult — green-tinted ring */
.person-saudi {
  background: rgba(0, 150, 57, .12);
  border: 1.5px solid rgba(0, 150, 57, .35);
}

/* Foreign adult — blue-tinted ring */
.person-foreign {
  background: rgba(59, 130, 246, .12);
  border: 1.5px solid rgba(59, 130, 246, .35);
}

/* Saudi child */
.person-saudi-kid {
  background: rgba(0, 150, 57, .09);
  border: 1px solid rgba(0, 150, 57, .25);
}

/* Foreign child */
.person-foreign-kid {
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .28);
}

/* Sizes */
.person-icon-md { width: 30px; height: 30px; }
.person-icon-sm { width: 22px; height: 22px; }
