.SidePanelDrawerToggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.SidePanelDrawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 32, 36, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
  transition: opacity 0.16s ease-out;
}

.SidePanelDrawerBackdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
  appearance: none;
  opacity: 0;
}

.SidePanelDrawerPanel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 92vw);
  height: 100%;
  background: #ffffff !important;
  opacity: 1;
  border-radius: 16px 0 0 16px;
  border-left: 1px solid rgba(2, 132, 137, 0.18);
  box-shadow: 0 18px 38px rgba(6, 32, 36, 0.18);
  transform: translateX(100%);
  transition: transform 0.16s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.SidePanelDrawerToggle:checked + .SidePanelDrawerOverlay {
  opacity: 1;
  pointer-events: auto;
}

.SidePanelDrawerToggle:checked + .SidePanelDrawerOverlay .SidePanelDrawerPanel {
  transform: translateX(0);
}

.SidePanelDrawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #f7fafc;
  border-bottom: 1px solid rgba(2, 132, 137, 0.12);
}

.SidePanelDrawerTitle {
  font-size: 16px;
  font-weight: 700;
  color: #062024;
}

.SidePanelDrawerClose {
  appearance: none;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 137, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #062024;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.SidePanelDrawerClose:hover {
  background-color: rgba(2, 132, 137, 0.06);
  border-color: rgba(2, 132, 137, 0.28);
}

.SidePanelDrawerBody {
  padding: 14px;
  overflow-y: auto;
  min-height: 0;
  background: #ffffff;
}