a {
  text-decoration: none;
}

.calendar-wrapper {
  width: 100%;
  padding: 2em;
  border: 1px solid #dcdcff;
  border-radius: 5px;
  background: #fff;
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 0;
}
table {
  clear: both;
  width: 100%;
  border: 1px solid #dcdcff;
  border-radius: 3px;
  border-collapse: collapse;
  color: #444;
}
td {
  height: 48px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #dcdcff;
  border-top: 1px solid #dcdcff;
  width: 14.28571429%;
}
td.not-current {
  color: #c0c0c0;
}
td.today {
  font-weight: 700;
  color: #28283b;
  font-size: 1.5em;
}
td.marcat{
	background: rgba(245,170,1,1);
}
thead td {
  border: none;
  color: #28283b;
  text-transform: uppercase;
  font-size: 1.5em;
}
#btnPrev {
  float: left;
  margin-bottom: 20px;
}
#btnPrev:before {
  content: '\f104';
  font-family: FontAwesome;
  padding-right: 4px;
}
#btnNext {
  float: right;
  margin-bottom: 20px;
}
#btnNext:after {
  content: '\f105';
  font-family: FontAwesome;
  padding-left: 4px;
}
#btnPrev,
#btnNext {
  border: none;
  outline: none;
  font-size: 0.75em;
  margin: 10px 5px;
  font-variation-settings: "YTLC" 540, "wght" 200, "wdth" 75;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#btnPrev:hover,
#btnNext:hover {
  color: #28283b;
  font-weight: bold;
  font-variation-settings: "YTLC" 540, "wght" 300, "wdth" 400;
}

@media (prefers-color-scheme: dark) {

  .calendar-wrapper {
    background: #111;
    border: 1px solid #444;
  }
  table {
    color: #ccc;
    border: 1px solid #333;
  }
  td{
    border: 1px solid #333;
  }
  td.today {
    color: #fff;
  }
  thead td {
    color: #ccc;
    font-variation-settings: "ital" 1, "YTLC" 540, "wght" 200, "wdth" 75;
  }
}