/* Exact dropdown width matching V17 */

body .pxd-menu {
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 6px !important;
}

body .pxd-option {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 39px !important;
  padding: 8px 9px !important;
  box-sizing: border-box !important;
}

body .pxd-option > span:first-child {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/*
 * Do not force a full-width bottom sheet on mobile.
 * The dropdown remains attached to its own filter box.
 */
@media (max-width: 720px) {
  body .pxd-menu {
    right: auto !important;
    bottom: auto !important;
    max-height: min(260px, calc(100vh - 100px)) !important;
    border-radius: 12px !important;
  }

  body .pxd-option {
    min-height: 40px !important;
    padding: 8px 9px !important;
    font-size: 13px !important;
  }
}