/* Renfort sticky banque d'étiquettes Maprimaire - version desktop sans ascenseur interne */

/* Ordinateur / tablette : le bloc suit le scroll, sans scrollbar interne */
@media (min-width: 768px) {
  .mp-label-bank {
    position: sticky !important;
    top: 18px !important;
    z-index: 300 !important;

    /* Correctif : pas d'ascenseur dans le bloc sur ordinateur */
    max-height: none !important;
    overflow-y: visible !important;
    overflow-x: visible !important;

    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14) !important;
  }

  .mp-label-bank .mp-labels {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Mobile : on garde le comportement validé, fixe en bas */
@media (max-width: 767px) {
  .mp-label-bank {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    top: auto !important;
    z-index: 9999 !important;

    max-height: 240px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.24) !important;
  }
}