@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Inter:400'");
.month {
  padding: 20px 25px;
  width: 100%;
  background: #3c85f0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.month ul {
  margin: 0;
  padding: 0;
}

.month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.month .prev {
  float: left;
  padding-top: 10px;
}

.month .next {
  float: right;
  padding-top: 10px;
}

.weekdays {
  margin: 0;
  padding: 10px 0;
  background-color: #ddd;
}

.weekdays li {
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
}

.days {
  padding: 10px 0;
  background: #fff;
  margin: 0;
  border-radius: 0 0 10px 10px;
}

.days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 12px;
  color: #777;
}

.days li .active {
  padding: 5px;
  background: #3c85f0;
  color: white !important;
  border-radius: 3px;
}

/* Add media queries for smaller screens */
@media screen and (max-width: 720px) {
  .weekdays li, .days li {
    width: 13.1%;
  }
}
@media screen and (max-width: 370px) {
  .weekdays li, .days li {
    width: 12.5%;
  }
  .days li .active {
    padding: 4px;
  }
}
@media screen and (max-width: 290px) {
  .weekdays li, .days li {
    width: 12.2%;
  }
}/*# sourceMappingURL=calendar.css.map */