#weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

#days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 10px;
}

#days div {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: right;
  border-radius: 4px;
}



#days .other-month {
  color: #888;
  background: #f8f8f8;
}

.header {
  display: flex;
  align-items: center;   /* vertically center */
  justify-content: space-between; /* space between buttons and title */
  margin-bottom: 10px;
}

.nav-buttons {
  display: flex;
  gap: 8px; /* space between prev/next buttons */
}

#calendar {
  margin: 0;
  font-size: 1.5rem;
}
