/* This is the CSS code for the calendar */
:root{
  margin: 0%;
  padding: 0%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Style the calendar container */
.nav-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  background-color: white;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);

}

.top-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  background-color: white;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}
.top-text-small{
  display: flex;
  font-size: 18px;
  font-weight: lighter;
  

}

#calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

/* Style the calendar heading */
#calendar-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  background-color: white;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

/* Style the calendar dates container */
#calendar-dates {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  margin: 10px;
}

/* Style the calendar dates */
.calendar-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 11);
  height: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  cursor: pointer;
  margin: 5px;
  padding: 10px;
}

/* Style the Previous button */
/* Style the Previous button */
#previous-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

/* Style the Next button */
#next-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

/* Style the fire emoji background */
.fire {
  background-color: yellow;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: whitesmoke;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: cream;
}
@media only screen and (max-width: 480px) {
  /* Add styles for small screens here */
  .nav-text {
    font-size: 18px;
  }
  .top-text {
    font-size: 18px;
  }
  #calendar {
    width: 90%;
  }
  #calendar-heading {
    font-size: 18px;
  }
  .calendar-date {
    width: calc(100% / 7);
    height: 40px;
    font-size: 14px;
  }
  #previous-button,
  #next-button {
    width: 50%;
    font-size: 12px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Add styles for tablets here */
  .nav-text {
    font-size: 20px;
  }
  .top-text {
    font-size: 20px;
  }
  #calendar {
    width: 80%;
  }
  #calendar-heading {
    font-size: 20px;
  }
  .calendar-date {
    width: calc(100% / 7);
    height: 45px;
    font-size: 16px;
  }
  #previous-button,
  #next-button {
    width: 50%;
    font-size: 14px;
  }
}
