body {background-color:darkslategray;}
h1 {
    color:lightgray;
    font-family: sans-serif;
    font-size: 20px;
}
p {
    color:lightgray;
    font-family: sans-serif;
    font-size: 16px;
}
button {
  background-color: darkgreen;
  border: none;
  color: lightgray;
  padding: 15px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: sans-serif;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
  white-space: nowrap;
}
button:disabled {
  background-color: darkgray;
  cursor: not-allowed;
}

.text {
  color:lightgray;
  font-family: sans-serif;
  font-size: 16px; 
}
.open {
  background-color: grey;
  width: 90%;
}
.pending {
  background-color: orange;
  width: 90%;
}
.booking {
  background-color: darkgreen;
  width: 90%;
}
.blocked {
  background-color: darkred;
  width: 90%;
}