/* JustiX v0.8.5.4 — Court Participant Base Cleanup
   Removes obsolete legacy furniture/base layers that remained visible beneath
   the participant information cards after the containment refactor. */

/* 2D legacy scene: the participant identity card is now the only visible base. */
.legacy-court-2d .desk,
.legacy-court-2d .judge-platform{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  outline:0!important;
}

/* Preserve layout anchors without painting the old brown surfaces. */
.legacy-court-2d .desk::before,
.legacy-court-2d .desk::after,
.legacy-court-2d .judge-platform::before,
.legacy-court-2d .judge-platform::after{
  display:none!important;
  content:none!important;
}

/* Ensure identity cards remain the single visual card under every avatar. */
.legacy-court-2d .court-person-copy{
  margin-bottom:0!important;
  z-index:5!important;
}
.legacy-court-2d .judge-person,
.legacy-court-2d .lawyer-person{
  background:transparent!important;
  box-shadow:none!important;
}

/* 3D scene: keep courtroom furniture, but prevent duplicate actor-base panels. */
.courtroom-3d-shell .actor3d{
  background:transparent!important;
  box-shadow:none!important;
}
.courtroom-3d-shell .actor3d > .actor-name{
  z-index:8!important;
}
