/* ERP Comercial Chile v10.23.3
   Mantiene el menú lateral visible mientras el documento se desplaza. */

@media (min-width: 1024px) {
  #root aside.no-print {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 16rem !important;
    min-width: 16rem !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    align-self: auto !important;
    transform: none !important;
    z-index: 50 !important;
  }

  /* El aside fijo sale del flujo: este margen conserva su espacio original. */
  #root > div.flex > main.flex {
    width: calc(100% - 16rem) !important;
    margin-left: 16rem !important;
    flex: 1 1 auto !important;
  }
}
