

.wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.kalendarz {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  box-sizing: border-box;
  min-height: 500px;
}

.btn {
  padding: 15px 30px;
  background: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin: 20px auto 0 auto;
  max-width: 420px;
  text-align: center;
}

.date {
  padding: 10px;
  background: #eee;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.date:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.date.selected {
  background: #4caf50;
  color: white;
}

button.selected {
  background-color: rgba(38, 146, 255, 0.5);
  font-weight: bold;
}

.calendar-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-weight: bold;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  max-width: 420px;
  margin: 0 auto 10px auto;
  text-align: center;
}

.calendar-weekdays div {
  font-weight: bold;
  padding: 5px 0;
}

.calendar button {
  height: 40px;
  padding: 5px;
  border: 1px solid #ccc;
  background-color: white;
  color: black;
  cursor: pointer;
  border-radius: 6px;
}

.calendar button:disabled {
  background-color: #eee;
  color: #aaa;
  cursor: not-allowed;
}

.calendar button.selected {
  background-color: rgba(38, 146, 255, 0.5);
  font-weight: bold;
}

.komunikat {
  margin-top: 15px;
  font-weight: bold;
  color: red;
  min-height: 24px;
}

.formularz {
  margin-top: 20px;
}
.reservation {
  width: 98%;
  margin-left: 1%;
  align-items: stretch;
}