/* ===== MOBILE DRAGGABLE & QUICK REPORT SHEETS ===== */
/* --- NIRA Redesigned Mobile UX Styles (Snappy Capsule Bar) --- */
#mobile-draggable-sheet {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, bottom;
}
#mobile-draggable-sheet.dragging {
  transition: none !important;
}
#mobile-draggable-sheet .glass-panel {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 104, 87, 0.06), 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-draggable-sheet.collapsed #draggable-sheet-content {
  max-height: 0px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
  pointer-events: none;
}
#mobile-draggable-sheet:not(.collapsed) #draggable-sheet-content {
  max-height: 380px !important;
  opacity: 1;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
#draggable-sheet-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
#draggable-sheet-content::-webkit-scrollbar-track {
  background: transparent;
}
#draggable-sheet-content::-webkit-scrollbar-thumb {
  background: rgba(11, 143, 114, 0.2);
  border-radius: 99px;
}
#draggable-sheet-content::-webkit-scrollbar-thumb:hover {
  background: rgba(11, 143, 114, 0.4);
}
#mobile-draggable-sheet.collapsed .glass-panel {
  border-radius: 999px !important;
}
#mobile-draggable-sheet:not(.collapsed) .glass-panel {
  border-radius: 24px !important;
}
#mobile-draggable-sheet.collapsed #draggable-chevron {
  transform: rotate(0deg);
}
#mobile-draggable-sheet:not(.collapsed) #draggable-chevron {
  transform: rotate(180deg);
}
.quick-report-blur {
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

/* ===== NIRA Report UX — premium people-app ===== */
#quick-report-sheet {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 143, 114, 0.12);
  box-shadow: 0 20px 50px rgba(0, 72, 58, 0.14), 0 2px 8px rgba(15, 23, 42, 0.06);
  padding: 18px 18px 16px;
  z-index: 60;
  max-height: min(72vh, calc(100dvh - 180px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
#quick-report-sheet.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.qrs-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
