/* Academia Naval V124.10 - Organizacion en flujo natural.
   Corrige el recorte por flex-shrink sin tocar Chat, tipografia ni logica. */

/* La vista conserva su scroll propio, pero sus bloques NO se comprimen para caber. */
#socialPanel .social-section-view.detail-org{
  height:100dvh!important;
  min-height:0!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  box-sizing:border-box;
}

/* Causa del fallo: .social-section-view es flex-column y los hijos tenian flex-shrink:1.
   En Organizacion cada bloque debe usar su altura natural y el excedente se desplaza con scroll. */
#socialPanel .social-section-view.detail-org > *{
  flex:0 0 auto!important;
}

/* Garantias puntuales para los bloques que se veian recortados en Android. */
#socialPanel .social-section-view.detail-org > #socialSectionEditCard,
#socialPanel .social-section-view.detail-org > #socialSectionInviteCard,
#socialPanel .social-section-view.detail-org > .social-command-card,
#socialPanel .social-section-view.detail-org > .social-squads-card,
#socialPanel .social-section-view.detail-org > #socialSectionUnassignedCard{
  height:auto!important;
  min-height:0!important;
}

/* Formularios y rejillas crecen con su contenido; nunca se aplastan verticalmente. */
#socialPanel .social-section-view.detail-org .social-section-create-form,
#socialPanel .social-section-view.detail-org .social-search-row,
#socialPanel .social-section-view.detail-org .social-command-grid,
#socialPanel .social-section-view.detail-org .social-squads{
  flex-shrink:0!important;
}
