/* v242 — Casas participantes: alternância entre lista resumida e cards completos. */
.participant-directory-view-switch{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:5px;
  padding:4px;
  margin:0 0 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(0,0,0,.22);
}
.participant-directory-view-switch button{
  min-width:0;
  min-height:39px;
  padding:7px 12px;
  border:0;
  border-radius:9px;
  background:transparent;
  color:#bbc6d2;
  font-size:.78rem;
  font-weight:850;
}
.participant-directory-view-switch button.active{
  background:rgba(255,130,47,.16);
  box-shadow:inset 0 0 0 1px rgba(255,150,65,.35);
  color:#fff1de;
}
.participant-directory-view-switch button:focus-visible,
.participant-compact-comments:focus-visible{
  outline:2px solid #ffb25b;
  outline-offset:2px;
}
.participant-house-directory.participant-directory-list-view{
  gap:11px;
}
.participant-directory-list-view .participant-admin-street{
  margin:0 0 3px;
}
.participant-directory-list-view .participant-admin-street-head{
  margin-bottom:3px;
  padding-bottom:5px;
}
.participant-directory-list-view .participant-admin-family-list{
  gap:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.018);
}
.participant-compact-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:0;
  padding:10px 11px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.participant-compact-row:last-child{border-bottom:0}
.participant-compact-row:nth-child(even){background:rgba(255,255,255,.025)}
.participant-compact-copy{
  display:grid;
  gap:3px;
  flex:1 1 auto;
  min-width:0;
}
.participant-compact-copy b{
  color:#fff8ed;
  font-size:.84rem;
  line-height:1.25;
  font-weight:900;
  overflow-wrap:anywhere;
}
.participant-compact-copy span{
  color:#bcc8d4;
  font-size:.72rem;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.participant-compact-comments{
  display:grid;
  place-items:center;
  flex:0 0 38px;
  width:38px;
  height:38px;
  padding:0;
  border:1px solid rgba(255,255,255,.13);
  border-radius:10px;
  background:rgba(255,255,255,.045);
  color:#fff;
  font-size:1rem;
}
@media(max-width:480px){
  .participant-compact-row{gap:8px;padding:9px 10px}
  .participant-compact-copy b{font-size:.8rem}
  .participant-compact-copy span{font-size:.68rem}
  .participant-compact-comments{flex-basis:36px;width:36px;height:36px}
}
