.kalender-wrapper {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  padding: 20px;
}

.kalender-wrapper h1 {
  text-align: center;
  color: #42675D;
}

.calendar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.calendar {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 320px;
}

.calendar h2 {
  text-align: center;
  margin-top: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.header button {
  background-color: #42675D;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  width: 14.28%;
  text-align: center;
  padding: 5px;
}

td.empty {
  background-color: #eee;
}

td.free {
  background-color: #d9f8e6;
}

td.reserved {
  background-color: #fff4c2;
}

td.booked {
  background-color: #f8d2d2;
}

.legend {
  margin-top: 10px;
  font-size: 0.9em;
  text-align: center;
}

.legend span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0 5px;
}

.free-label { background: #d9f8e6; }
.reserved-label { background: #fff4c2; }
.booked-label { background: #f8d2d2; }
