.calendar {
  display: inline-grid;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 20px;
  padding-top: 0px;
  border-radius: 5px;
  box-shadow: 0px 40px 30px -20px rgba(0, 0, 0, 0.3);
}
.calendar .month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*font-size: 20px;*/
  margin-bottom: 17px;
  font-weight: 300;
}
.calendar .month .year {
  font-weight: 600;
  margin-left: 10px;
}
.calendar .month .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #0a3d62;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  transition-duration: 0.2s;
  position: relative;
}
.calendar .month .nav:hover {
  background: #eee;
}
.calendar .days {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(7, 1fr);
  color: #999;
  font-weight: 600;
  margin-bottom: 15px;
}
.calendar .days span {
  width: 33px;
  justify-self: center;
  align-self: center;
  text-align: center;
}
.calendar .dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar .dates button {
  cursor: pointer;
  outline: 0;
  border: 0;
  background: transparent;
/*  font-family: "Montserrat", sans-serif;
  font-size: 16px;
*/
  justify-self: center;
  align-self: center;
  width: 35px;
  height: 30px;
  border-radius: 30px;
  margin: 2px;
  transition-duration: 0.2s;
}
/*[JV] 12.03.2023 - styl pro "Dnešní den" */
.calendar .dates button.today {
  background: #003a9f;
  color: #fff;
  font-weight: 600;
}
/*[JV] 12.03.2023 - styl pro "Událost" */
.calendar .dates button.event {
  box-shadow: inset 0px 0px 0px 2px #0a3d62;
}
/*[JV] 12.03.2023 - styl pro "Den mimo akt. měsíc" */
.calendar .dates button.out-of-range {
  color: #ddd5d5;
  font-weight: normal;
}
/*[JV] 12.03.2023 - styl pro "listovátka <>" */
.calendar i {
  color: #003a9f;
  font-size: 30px;
}
.calendar .dates button:first-child {
  grid-column: 0;    /*[JV] 12.03.2023 - Původně bylo 3 */
}
.calendar .dates button:hover {
  background: #eee;
}
.calendar .dates button:focus {
  background: #0a3d62;
  color: #fff;
  font-weight: 600;
}