body {
  background: #fff0f8;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.calendar {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.25);
  text-align: center;
}

.month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ff69b4;
  font-size: 1.4rem;
  font-weight: bold;
}

.month button {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #ff69b4;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.month button:hover {
  transform: scale(1.2);
}

.year {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.weekdays, .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 0.9rem;
}

.weekdays div {
  font-weight: bold;
  color: #ff69b4;
}

.days div {
  padding: 8px;
  border-radius: 20%;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #444;
}

.days div:hover {
  background-color: #ffdae9;
  color: #ffdae9;
}

.days div.selected {
  background-color: #ffdae9;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 8px #ffffff;
}

.faded {
  color: #ffffff;
}