/* v0177 - clickable date range for fast calendar jumps. */
.app-shell .calendar-jump{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.app-shell .calendar-jump-trigger{
  appearance:none;
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  font-weight:700;
  line-height:1.2;
  padding:5px 7px;
  border-radius:7px;
  cursor:pointer;
  white-space:nowrap;
}
.app-shell .calendar-jump-trigger:hover,
.app-shell .calendar-jump-trigger:focus-visible{
  background:rgba(20,77,52,.08);
  outline:none;
}
.app-shell .calendar-jump-trigger:focus-visible{
  box-shadow:0 0 0 2px rgba(20,77,52,.22);
}
.app-shell .calendar-jump-input{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
  inset:auto;
}
