/* :root {
  --teal-050: #effcf6;
  --teal-100: #c6f7e2;
  --teal-200: #8eedc7;
  --teal-300: #65d6ad;
  --teal-400: #3ebd93;
  --teal-500: #27ab83;
  --teal-600: #199473;
  --teal-700: #147d64;
  --teal-800: #0c6b58;
  --teal-900: #014d40;
  --blue-grey-050: #f0f4f8;
  --blue-grey-100: #d9e2ec;
  --blue-grey-200: #bcccdc;
  --blue-grey-300: #9fb3c8;
  --blue-grey-400: #829ab1;
  --blue-grey-500: #627d98;
  --blue-grey-600: #486581;
  --blue-grey-700: #334e68;
  --blue-grey-800: #243b53;
  --blue-grey-900: #102a43;
} */


/* html {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 125%;
  line-height: 1.4;
  font-weight: 400;
  color: var(--blue-grey-900);
}

body {
  min-height: 100vh;
  background: #d9e2ec;
}
*/
.n-calendar {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 3em auto 0 auto;
  padding: 1.5em;
  background-color: #fff;
  border: 2px solid var(--blue-grey-200);
  border-radius: 8px;
}

.n-calendar .month-indicator {
  color: #334e68;
  text-align: center;
  font-weight: bold;
}

.n-calendar .day-of-week,
.n-calendar .date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.n-calendar .day-of-week {
  margin-top: 1.25em;
}

.n-calendar .day-of-week > * {
  font-size: 0.7em;
  color: #829ab1;
  font-weight: 500;
  letter-spacing: 0.1em;
  /* font-variant: small-caps; */
  text-align: center;
  text-transform: uppercase;
}

/* Dates */
.n-calendar .date-grid {
  margin-top: 0.5em;
}

/* Positioning the first day */
.n-calendar .date-grid button:first-child {
  /* grid-column: 6; */
  grid-column: var(--day-start);
}

.n-calendar .date-grid button {
  position: relative;
  border: 0;
  width: 4.5ch;
  height: 4.5ch;
  border-radius: 50%;
  background-color: transparent;
  color: #486581;
}

.n-calendar .date-grid button:hover,
.n-calendar .date-grid button:focus {
  outline: none;
  background-color: #effcf6;
  color: #334e68;
}

.n-calendar .date-grid button.today, .n-calendar .date-grid button.today a {
  color: #8338ec !important;
  font-weight: bold;
}

.n-calendar .date-grid button a {
  color: #486581;
}

.n-calendar .date-grid button:active,
.n-calendar .date-grid button.is-selected {
  background-color: #c6f7e2;
  color: #014d40;
}
