/* Inherit the message typography; the underline signals an optional calendar action. */
:is(#app, .task-workspace) button.calendar-date-link {
  display: inline;
  padding: 0;
  margin: 0;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  cursor: pointer;
  user-select: text;
}
:is(#app, .task-workspace) button.calendar-date-link:hover {
  text-decoration-style: solid;
}
:is(#app, .task-workspace) button.calendar-date-link:focus-visible {
  outline: 2px solid var(--mix-blue, currentColor);
  outline-offset: 3px;
}
