.rezervace-dialog-potvrzeni button {
  padding: 8px 16px;
  cursor: pointer;
}

.rezervace-dialog-zprava button {
  padding: 8px 16px;
  cursor: pointer;
}

.rezervace-dialog {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
}

.rezervace-container h2 {
  margin-top: 0;
  font-size: 1.4em;
  text-align: center;
}

.rezervace-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.rezervace-container select {
  width: 100%;
  padding: 5px;
  margin-bottom: 15px;
  font-size: 1em;
}

#rezervace-sloty {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 15px;
  justify-content: center;
}

.rezervace-slot {
  flex: 1 0 21%;
  text-align: center;
  line-height: 250%; 
  background: #e9e9ed;
  border: 1px solid #8f8f9d;
  border-radius: 4px;
}

.rezervace-slot.volny {
  cursor: pointer;
}

.rezervace-slot.volny:hover {
  background-color: #d0d0d7;      
}

.rezervace-slot.obsazeny {
  text-decoration: line-through;
  color: #898989;
  cursor: default;
}

.rezervace-slot.muj {
  color: #ffffff;
  background-color: #0078d7;
  border: 1px solid #0078d7;
  font-weight: bold;
  cursor: default;
}

#rezervace-zprava {
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  min-height: 1.5em;
}

#rezervace-zavrit {
  background: #ccc;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-size: 0.9em;
}

#rezervace-zavrit:hover {
  background: #bbb;
}
