/*body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.img-calendar-wrapper {
  display: flex;
  gap: 20px;              // space between image and calendar
  align-items: flex-start; // align top edges
}

.img-calendar-wrapper img {
  max-width: 50%;         // adjust as needed
  height: auto;
}

*/
/*
.calendar-layout {
  width: 323px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid lightgray;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 10px;
}*/

.calendar {
  width: 323px;
  border: 1px solid lightgray;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 10px;
}
.calendar-wrapper {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.calendar-text {
	max-width: 400px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: gray;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 12px;
  height: 40px;
}

button {
  cursor: pointer;
}

.weekdays,
.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.weekdays div {
  font-weight: bold;
  padding: 5px 0;
}

.dates div {
  padding: 10px 0;
  cursor: pointer;
  border-radius: 6px;
}

.dates div:hover {
  background-color: #eee;
}

.empty {
  cursor: default;
}

.today {
  border: 1px solid #2196f3;
}

.selected {
  background-color: #4caf50;
  color: white;
}

.range {
  background-color: #a5d6a7;
}

.special {
  background-color: #FF6600;
  color: #333;
}
