* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-weight: 400;
  color: #666; /* Light gray */
}

html {
  font-size: 62.5%;
}

.container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, #cd9cf2 0%, #f6f3ff 100%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar {
  width: 80rem;
  height: 60rem;
  background: linear-gradient(to top, #c471f5 0%, #fa71cd 100%);
  box-shadow: 0 0.2rem 2rem rgb(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 10px;
}

.month {
  width: 100%;
  height: 12rem;
  background-color: #fa71cd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  text-align: center;
  text-shadow: 0 0.3rem 0.5rem rgb(0, 0, 0, 0.5);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.month i {
  font-size: 2.5rem;
  cursor: pointer;
  color: #f5f7f8;
}

.month h1 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #f5f7f8;
}

.month p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  background-color: #f6f3ff;
  padding: 1rem;
  border-radius: 10px;
}

.weekdays div {
  padding: 1rem;
  background-color: #f9f5f6;
  border-radius: 5px;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.days div {
  background-color: #f9f5f6;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 1.4rem;
  color: #666;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s, transform 0.2s;
}

.days div:hover {
  background-color: #edd5ff;
  cursor: pointer;
  transform: scale(1.05);
}

.prev-date,
.next-date {
  opacity: 0.5;
}

.today {
  color: #3e3e3e !important; /* Make the text color match the border */
  font-weight: bold !important;
  background-color: #cd9cf2 !important; /* Add a background color */
}
