.calendar {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 2rem;
}
.calendarHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.calendarHeader a {
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.calendarHeader a img {
  width: 25px;
  height: 25px;
}
.calendarHeader p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
}

.calendarWeek {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(7, 1fr);
}

.calendarWeekItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14%;
  text-align: center;
  height: 40px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.calendarWeekItem.inativo {
  color: #d5d5d5;
  cursor: not-allowed;
}

.calendarWeekItem.selecionado {
  background-color: #035aa3;
  border-radius: 50%;
  font-weight: bold;
  color: #ffffff;
}

.calendarWeekDay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14%;
  text-align: center;
  height: 40px;
  font-family: "Inter", sans-serif;
}

.buttonDisabled {
  cursor: not-allowed;
  text-decoration: none;
}

#calendarioSeguinte {
  display: none;
}
