/* PM24 V310 — mobile guest-activity bottom-sheet safety
   Turns the mobile guest-activity panel into a real modal sheet: underlying
   dashboard shortcuts are covered by a backdrop, the sheet remains inside the
   visual viewport, and the action footer stays reachable while content scrolls. */

.pm24-guest-activity-backdrop{
  display:none;
}

@media (max-width:760px){
  .pm24-guest-activity.is-open{
    z-index:2147483000!important;
  }

  .pm24-guest-activity-backdrop{
    position:fixed!important;
    inset:0!important;
    width:100vw!important;
    height:100dvh!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:rgba(7,22,49,.48)!important;
    -webkit-backdrop-filter:blur(2px)!important;
    backdrop-filter:blur(2px)!important;
    z-index:1190!important;
    cursor:pointer!important;
    touch-action:none!important;
  }
  .pm24-guest-activity-backdrop:not([hidden]){
    display:block!important;
  }

  .pm24-guest-activity-panel{
    position:fixed!important;
    left:12px!important;
    right:12px!important;
    top:auto!important;
    bottom:calc(18px + env(safe-area-inset-bottom))!important;
    width:auto!important;
    max-width:none!important;
    max-height:min(74dvh,calc(100dvh - 54px - env(safe-area-inset-bottom)))!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior:contain!important;
    -webkit-overflow-scrolling:touch!important;
    scroll-padding-bottom:76px!important;
    padding:16px 16px 14px!important;
    border-radius:24px!important;
    box-shadow:0 28px 80px rgba(4,18,43,.38)!important;
    z-index:1200!important;
  }

  .pm24-guest-activity-head{
    position:sticky!important;
    top:-16px!important;
    z-index:3!important;
    margin:-16px -16px 0!important;
    padding:16px 16px 12px!important;
    background:rgba(255,255,255,.98)!important;
    -webkit-backdrop-filter:blur(10px)!important;
    backdrop-filter:blur(10px)!important;
  }

  .pm24-guest-activity-footer{
    position:sticky!important;
    bottom:-14px!important;
    z-index:3!important;
    margin:14px -16px -14px!important;
    padding:12px 16px 14px!important;
    border-top:1px solid #e7eef8!important;
    background:linear-gradient(180deg,rgba(255,255,255,.9),#fff 28%)!important;
  }

  .pm24-guest-activity-footer a{
    min-height:42px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }

  .pm24-guest-activity-summary,
  .pm24-guest-activity-section,
  .pm24-guest-activity-list,
  .pm24-guest-activity-row{
    min-width:0!important;
  }
}

@media (max-width:390px){
  .pm24-guest-activity-panel{
    left:8px!important;
    right:8px!important;
    bottom:calc(12px + env(safe-area-inset-bottom))!important;
    max-height:min(78dvh,calc(100dvh - 36px - env(safe-area-inset-bottom)))!important;
    padding-left:14px!important;
    padding-right:14px!important;
  }
  .pm24-guest-activity-head{
    margin-left:-14px!important;
    margin-right:-14px!important;
    padding-left:14px!important;
    padding-right:14px!important;
  }
  .pm24-guest-activity-footer{
    margin-left:-14px!important;
    margin-right:-14px!important;
    padding-left:14px!important;
    padding-right:14px!important;
  }
}
