/* =========================================================
   SHELL MODALES : REPORT UNIQUEMENT
========================================================= */

#roReportModal[aria-hidden="true"]{
  display: none;
}


#roReportModal[aria-hidden="false"]{
  display: block;
}


#roReportModal{
  position: fixed;
  inset: 0;
  z-index: 9997;
}


#roReportModal .ro-modal__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9998;
}


#roReportModal .ro-modal__dialog{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100vw - 24px));
  max-height: min(80vh, 720px);
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}


#roReportModal .ro-modal__header,
#roReportModal .ro-modal__footer{
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}


#roReportModal .ro-modal__footer{
  border-bottom: 0;
  border-top: 1px solid rgba(0,0,0,.08);
  justify-content: flex-end;
}


#roReportModal .ro-modal__body{
  padding: 16px;
  overflow: auto;
}


#roReportModal .ro-iconbtn{
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}



/* Mobile = bottom sheet */
@media (max-width: 680px){

  #roReportModal .ro-modal__dialog{
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100vw;
    max-height: 82vh;
    border-radius: 18px 18px 0 0;
  }
}



.ro-report-form .ro-fieldset { border: 0; padding: 0; margin: 0; }
.ro-report-form .ro-fieldset legend { font-weight: 600; margin-bottom: 10px; }

.ro-report-form .ro-radio{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  cursor: pointer;
}

.ro-report-form .ro-radio + .ro-radio{ margin-top: 10px; }

.ro-report-form textarea{
  width: 100%;
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 10px 12px;
}