html.session-picker-open { overflow: hidden; }

.sessionPickerOverlay {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(18, 18, 24, .34);
  padding: 18px 14px max(18px, env(safe-area-inset-bottom));
}

.sessionPickerSheet {
  width: min(100%, 430px);
  max-height: min(72vh, 620px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(35, 31, 48, .08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(28, 22, 40, .18);
  padding: 18px;
}

.sessionPickerHead {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sessionPickerHead h2 {
  margin: 0 0 5px;
  font-size: 19px;
  line-height: 1.35;
}

.sessionPickerHead p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #74707d;
}

.sessionPickerClose {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f5f3f7;
  font-size: 22px;
  line-height: 1;
  color: #4c4753;
}

.sessionPickerOptions {
  display: grid;
  gap: 9px;
}

.sessionPickerOption {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #ece8ef;
  border-radius: 15px;
  background: #fff;
  text-align: left;
  color: inherit;
}

.sessionPickerOption.selected {
  border-color: #d8c2ee;
  background: #fbf7ff;
}

.sessionPickerOption b {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.sessionPickerOption strong {
  font-size: 22px;
  font-weight: 400;
  color: #a69fac;
}

.sessionPickerRound {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7e9f3, #eee8ff);
  color: #51465e;
  font-size: 13px;
  font-weight: 800;
}
