/* MULTI-ENTITY CARD */
.entity-hub {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(124, 58, 237, .12), 0 0 0 20px rgba(124, 58, 237, .06);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto;
}

.entity-node {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  transition: all .3s;
}

.entity-node:hover {
  background: rgba(124, 58, 237, .2);
  border-color: rgba(124, 58, 237, .4);
}

.entity-node .en-flag {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.entity-node .en-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  color: #fff;
}

.entity-node .en-sub {
  font-size: .62rem;
  color: rgba(255, 255, 255, .4);
}

.recon-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

.rs-matched {
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .2);
}

.rs-mismatch {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .2);
}

.rs-pending {
  background: rgba(241, 137, 17, .1);
  border: 1px solid rgba(241, 137, 17, .2);
}



/* CONSOLIDATION VISUAL */
.consol-section {
  background: var(--gray-50);
}

.consol-entity {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
  transition: all .3s;
}

.consol-entity:hover {
  border-color: #7c3aed;
  box-shadow: 0 4px 20px rgba(124, 58, 237, .12);
}

.consol-entity .ce-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark);
}

.consol-entity .ce-sub {
  font-size: .72rem;
  color: var(--gray-600);
}

.consol-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  font-size: 1.2rem;
}

.consol-result {
  background: linear-gradient(135deg, #433aed, #5b21b6);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: #fff;
  text-align: center;
}

.consol-result h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.elim-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  margin: 3px;
}

.mn-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .87rem;
  flex-shrink: 0;
  background: rgba(109, 250, 140, .12);
}

.mn-icon i {
  font-size: .87rem;
}