.checkins-table {
  .checkin--counts {
    vertical-align: top;
  }

  td.checkin--counts {
    font-size: var(--font-sm);
    width: clamp(7rem, 20%, 8rem);
  }

  .checkin--name {
    width: clamp(7rem, 25%, 8rem);

    p {
      line-height: var(--font-md);
    }
  }

  .checkin--actions {
    width: clamp(5rem, 20%, 6rem);
  }

  tr.checked-in {
    background-color: var(--color-green-muted);
  }

  .btn-sm {
    font-size: var(--font-xs);
  }

  .checkin--name {
    &:first-letter {
    }
  }

  .checkin--initial {
    width: 2rem;
    font-size: var(--font-2xl);
    color: var(--color-red);
  }

  .checkin--new-letter-row {
    &:not(:first-child) {
      border-top: 3px solid var(--color-red);
    }
  }
}

@media print {
  .page-break {
    page-break-after: always;
    break-after: page;
  }
}
.families-page .filter {
  margin-bottom: var(--size-2xs);
}

.families-table {
  width: 100%;

  thead {
    border-bottom: 3px solid var(--color-gray);
  }

  th, td {
    border: 1px solid #efefef;
    padding: var(--size-2xs);
  }

  td {
    a {
      color: var(--color-black);
      text-decoration: underline;

      &:hover {
        text-decoration: none;
      }
    }
  }

  tr {
    &.underpaid {
      background-color: var(--color-red-muted);
    }

    &.overpaid {
      background-color: var(--color-yellow-muted);
    }
  }

  tfoot {
    border-bottom: 3px solid var(--color-gray);
    background-color: var(--color-gray);
    font-size: var(--font-sm);
  }

  .choices {
    font-size: var(--font-xs);
  }

  .family--payment {
    font-size: var(--font-sm);
  }
}

.choices {
  &.too-few {
    background-color: var(--color-yellow-muted);
  }
  &.too-many {
    background-color: var(--color-red-muted);
  }
}

.choice-alert {
  &.too-few {
    color: var(--color-yellow);
  }
  &.too-many {
    color: var(--color-red);
  }
}
.dashboard {
  section > h1 {
    display: block;
    width: 100%;
    font-size: var(--font-2xl);
  }

  .metrics {
    display: flex;
    gap: var(--size-xs);
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: var(--size-sm);

    .metric {
      border: 1px solid var(--color-gray);
      color: var(--color-black);
      background-color: var(--color-gray-light);
      border-radius: 0.25rem;
      box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      padding: var(--size-sm);
      width: 10rem;
      min-width: 10rem;
      text-align: center;

      .metric--title {
        font-size: var(--font-sm);
        line-height: var(--size-md);
      }

      .metric--value {
        display: block;
        font-size: var(--font-2xl);
        line-height: var(--size-2xl);
        text-align: center;
        font-weight: 600;
      }
    }
  }
}
@media (min-width: 800px) {
  .page-header.page-header-login {
    .page-heading {
      margin-left: auto;
      margin-right: auto;
      width: clamp(30rem, 50vw, 50rem)
    }
  }

  .login {
    .auth-card {
      margin-left: auto;
      margin-right: auto;
      width: clamp(30rem, 50vw, 50rem)
    }

    input[type="email"],
    input[type="password"] {
      width: 100%;
      outline: 3px solid var(--color-light-accent);
      border-radius: 0.25rem;

      &:user-valid {
        outline-color: var(--color-green);
      }

      &:user-invalid {
        outline-color: var(--color-red);
      }
    }
  }
}

@media (max-width: 800px) {
  .page-header.page-header-login {
    .page-heading {
      padding-left: var(--size-md);
      padding-right: var(--size-md);
    }
  }

  .login {
    .auth-card {
      padding-left: var(--size-md);
      padding-right: var(--size-md);
    }

    .field,
    .form-control {
      margin-bottom: var(--size-md);
    }

    label {
      font-size: var(--font-lg);
      margin-bottom: var(--size-xs);
    }

    input[type="email"],
    input[type="password"] {
      width: 100%;
      font-size: var(--font-xl);
      line-height: var(--size-xl);
      padding: var(--size-sm);
      outline: 3px solid var(--color-light-accent);
      border-radius: 0.25rem;

      &:user-valid {
        outline-color: var(--color-green);
      }

      &:user-invalid {
        outline-color: var(--color-red);
      }
    }

    .inline {
      label {
        display: inline-block;
        padding-bottom: 0;
      }
      input {
        vertical-align: middle;
        position: relative;
        bottom: .08rem;
      }
    }
  }
}
/* Tailwind's Pre-flight Reset */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  /* border-color: theme('borderColor.DEFAULT', currentColor); /* 2 */
}

::before,
::after {
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
.schedule {
  .alert:empty {
    display: none;
  }
  .draggable {
    cursor: grab;
    border: 1px solid black;

    &:active {
      cursor: grabbing;
    }
  }

  .dropzone {
    &.dragover {
      background-color: var(--color-gray);
    }
    &.no-drop {
      background-color: var(--color-red);
      cursor: not-allowed;
    }
  }

  .blocked {
    background-color:red;
  }

  td {
    padding: var(--size-2xs);
  }

  .schedule--time-slot {
    background-color: var(--color-gray-light);
    min-height: var(--size-xl);
    line-height: var(--size-xl);
    border-bottom: 1px dashed var(--color-gray-dark);

    &:last-child {
      border-bottom: none;
    }
  }

  .schedule--delete {
    background-color: var(--color-red);
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .schedule--time-input {
    width: 100%;
  }

  .schedule--new-time {
    width: 3rem;

    &:has(input[type="text"]) {
      width: auto;
    }
  }

  .choices {
    .choices--title {
      font-size: var(--font-2xl);
    }

    .choices--lists {
      display: flex;
      justify-content: space-between;
      @media (min-width: 800px) {
        max-width: 50%;
      }
      gap: 20px;

      aside {
        h2 {
          font-size: var(--font-xl);
        }
      }

      ul li {
        background-color: var(--color-gray-light);
      }
    }
  }
}

.schedules {
  .volunteer-schedule--name {
    font-size: var(--font-2xl);
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files</h1>
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --font-2xs: 0.5rem;
  --font-xs: 0.75rem; /* 12px */
  --font-sm: 0.875rem; /* 14px */
  --font-base: 1rem; /* 16px */
  --font-md: var(--font-base);
  --font-lg: 1.125rem; /* 18px */
  --font-xl: 1.25rem; /* 20px */
  --font-2xl: 1.5rem; /* 24px */
  --font-3xl: 1.875rem; /* 30px */
  --font-4xl: 2.25rem; /* 36px */

  --size-2xs: 0.5rem; /* 12px */
  --size-xs: 1rem; /* 16px */
  --size-sm: 1.25rem; /* 20px */
  --size-base: 1.5rem; /* 24px */
  --size-md: 1.5rem; /* 24px */
  --size-lg: 1.75rem; /* 28px */
  --size-xl: 1.75rem; /* 28px */
  --size-2xl: 2rem; /* 32px */
  --size-3xl: 2.25rem; /* 36px */
  --size-4xl: 2.5rem;

  /* Background Colors */
  --color-bg: white;
  --color-text-bg: white;

  --color-menu-bar: red;
  --color-button: white;
  --color-button-bg: blue;
  --color-link: blue;

  /* Text Color */
  --color-text: var(--color-black);

  --color-white: #fff;
  --color-black: #333;
  --color-gray: #ccc;
  --color-gray-light: #efefef;
  --color-gray-dark: #999999;
  --color-red: /*#C4423A; */ #D6001C;
  --color-red-muted: #F4D0CC; /*#E27A73;*/
  --color-red-bright: #ED240C; /*#E27A73;*/
  --color-red-danger: rgba(150, 0, 20, 1);
  --color-yellow-muted: rgba(214, 186, 0, 0.25);
  --color-yellow: rgba(214, 186, 0, 1);
  --color-green: rgba(69, 138, 14, 1);
  --color-green-muted: rgba(69, 138, 14, 0.25);
  --color-green-bright: rgba(101, 214, 11, 0.25);
}

html,
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", "Poppins", system-ui
}

a {
  color: var(--color-link);
}

button {
  color: var(--color-button);
  background-color: var(--color-button-bg);
}

@media (min-width: 800px) {
  main,
  .site-header,
  .site-footer {
    padding-left: var(--size-sm);
    padding-right: var(--size-sm);
  }
}

@media (max-width: 800px) {
  main,
  .site-header,
  .site-footer {
    padding-left: var(--size-2xs);
    padding-right: var(--size-2xs);
  }

  table {
    table-layout: fixed;

    .hideable {
      display: none;
    }
  }
}

.site-header {
  background-color: var(--color-red);
  color: white;
  padding-top: var(--size-2xs);
  padding-bottom: var(--size-2xs);
  margin-bottom: var(--size-sm);

  a {
    color: white;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }

  h1 {
    font-size: var(--font-xl);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;

  .brand {
    display: flex;
    align-content: center;
    align-items: center;
  }

  .logo {
    margin-right: var(--size-2xs);
    width: 50px;
    height: 50px;
  }

  .links {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    flex-grow: 1;
    flex-basis: 100%;
    list-style-type: none;
    font-size: var(--font-lg);
    text-align: center;

    :last-child {
    }
  }

  &>* {
    align-self: stretch;
  }

  .spacer {
    width: 0;
    height: 0;
    flex: 2;
  }

  .main-nav--toggle {
    background-color: transparent;
    line-height: var(--lh-8xl);
    font-size: var(--font-4xl);
    margin: var(--xxs);
    padding: 0 var(--xxs);
    cursor: pointer;
  }
  .main:hover {
    color: var(--color-light-light);
  }

  @media (min-width: 800px) {
    .links {
      display: flex !important;
      flex-basis: auto;
      flex-wrap: nowrap;
      flex-direction: row;
      justify-content: space-between;
    }

    .main-nav--toggle {
      display: none;
    }
  }

  @media (max-width: 800px) {
    .menu-nav--toggle {
      display: block;
    }

    .links {
      display: none;
      flex-grow: 1;
      flex-basis: 100%;
      flex-direction: column;

      li {
        padding-bottom: var(--size-xs);
      }

      &.show {
        display: flex;
        transition: display 0.5s linear;
      }
    }
  }
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--size-md);

  .page-heading {
    font-size: var(--font-3xl);
    line-height: var(--size-3xl);
  }
}

.notification {
  --color-fg: var(--color-gray-light);
  --color-bg: var(--color-gray);
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-fg);
  padding: var(--size-2xs);
  background-color: var(--color-bg);
  margin-bottom: var(--size-sm);
  color: var(--color-fg);

  &.notice {
    --color-fg: var(--color-green);
    --color-bg: var(--color-green-muted);
  }

  &.alert {
    --color-fg: var(--color-red);
    --color-bg: var(--color-red-muted);
  }

  .notification--icon {
    font-size: var(--font-xl);
    margin-right: var(--size-2xs);
  }

  .notification--content {
  }
}

.hidden {
  display: none !important;
}

@media print {
  .no-print {
    display: none !important;
  }
}

table {
  width: 100%;
  table-layout: fixed;

  thead {
    border-bottom: 3px solid var(--color-gray);
  }

  th, td {
    border: 1px solid #efefef;
    padding: var(--size-2xs);
  }

  td {
    word-wrap: break-word;
    a {
      color: var(--color-black);
      text-decoration: underline;

      &:hover {
        text-decoration: none;
      }
    }
  }

  tfoot {
    border-bottom: 3px solid var(--color-gray);
    background-color: var(--color-gray);
    font-size: var(--font-sm);
  }

  .choices {
    font-size: var(--font-sm);
  }
}

/* ChatGPT generated */
dl {
  display: grid;
  grid-template-columns: auto auto; /* Two columns: one for dt, one for dd */
  column-gap: var(--size-2xs); /* Row gap between pairs, column gap between dt and dd */
}

dt {
  grid-column: 1; /* Force dt to start in the first column */
  font-weight: 600;
}

dd {
  grid-column: 2; /* Force dd to start in the second column */
}

/* Forms */
.form-actions {
  display: block;
  margin-top: var(--size-sm);

  form {
    display: inline-block;
  }

  & button,
  & input[type=submit],
  & a {
    padding: var(--size-2xs);
    border: 1px solid var(--color-red);
    border-radius: 0.25rem;
    color: var(--color-red);
    text-decoration: none;

    &:hover,
    &:active,
    &:focus {
      border: 1px solid var(--color-red-bright);
      color: var(--color-red-bright);
    }

    &.btn-primary {
      background-color: var(--color-red);
      color: var(--color-white);
    }

    &.btn-danger {
      background-color: var(--color-red-danger);
      border-color: var(--color-red-danger);
      color: var(--color-white);
    }
  }

  a {
    display: inline-block;
  }

  &.full {
    @media (max-width: 800px) {
      form {
        display: block;
      }

      button,
      input[type="submit"],
      a {
        width: 100%;
        display: block;
        text-align: center;
        margin-top: var(--size-xs);
        padding: var(--size-sm);
      }

      .btn-primary {
        background-color: var(--color-dark-accent);
        color: var(--color-white);
        font-weight: 600;
      }

      .btn-danger {
        background-color: var(--color-red);
        color: var(--color-white);
        font-weight: 600;
      }
    }
  }
}

fieldset {
  border: 1px solid var(--color-gray);
  padding: var(--size-2xs);

  .form-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.form-control {
  margin-bottom: var(--size-2xs);
}

.btn {
  padding: var(--size-2xs);
  border: 1px solid var(--color-red);
  border-radius: 0.25rem;
  color: var(--color-red);
  text-decoration: none;

  &:hover,
  &:active,
  &:focus {
    border: 1px solid var(--color-red-bright);
    color: var(--color-red-bright);
  }

  &.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
  }

  &.btn-danger {
    background-color: var(--color-red-danger);
    border: var(--color-red-danger);
    color: var(--color-white);
  }
}

input[type=number],
input[type=email],
input[type=text],
input[type=password],
input[type=color],
textarea {
  border: 1px solid var(--color-gray);
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: var(--size-2xs);
  line-height: var(--size-2xs);
}

textarea {
  height: 5rem;
}

input:disabled {
  border: none;
}

label {
  display: block;
  font-weight: 600;
}

.checkbox-control {
  label {
    display: inline-block;
  }
}

input[type=number],
.amount-due {
  width: 3rem;
}

input[type=number].payment-amount {
  width: 4rem;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

select {
  padding: var(--size-2xs);
  border-radius: var(--size-2xs);
}

a {
  color: var(--color-black);
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}

@media print {
  .no-print {
    display: none;
  }
}
