html {
  min-height: 100%;
}

body {
  min-height: 100vh; /* fixes a problem where the body tag does not cover the full screen, so does not respond to click events to close modals, e.g. appointments messages modal */
  --cumac-green: hsl(87deg 72% 43%);
  --cumac-green-hover: hsl(from var(--cumac-green) h s 36%);
  --cumac-green-disable: hsl(from var(--cumac-green) h 46% 72%);
  --path-banner-blue: #146aa6;
  --error: #f00;
  --cumac-blue: #3399ee;
  --link: rgb(0, 0, 238);
  --row-contrast: #e9e9e9;
}

.hide {
  display: none;
}

.link {
  color: var(--link);
  text-decoration: underline;
  cursor: pointer;
}
