/* occupancy-final.css — stable right-aligned badge & hide old counters */
.room-count { display: none !important; } /* masque les vieux compteurs */

li.occ-row { position: relative; }

li.occ-row::after{
  content: attr(data-occ);
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 24px;          /* largeur fixe -> pas de "case aplatie" */
  text-align: center;
  border-radius: 10px;
  border: 1px solid currentColor;
  padding: 0 6px;
  font-size: 90%;
  opacity: 0.95;
  line-height: 1.2;
}
