.sidebar {
  background: #043F6D;
  color: #F9F9F9;
}

.sidebar-header {
  background: #043F6D;
}

.sidebar-menu li a {
  color: #F9F9F9;
}
.sidebar-menu li a:hover {
  background: #065b9e;
}

.bottom-nav {
  background: #043F6D;
}
.bottom-nav a {
  color: #F9F9F9;
}

.booking-form {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.booking-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #065b9e;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  transition: background-color 0.2s ease-in-out;
}
.booking-button:hover {
  background-color: #0878cf;
}
.booking-button.booked-button {
  background-color: #dedfe0;
  /* Bootstrap light grey */
  color: #5D6062;
  /* Bootstrap secondary text */
  cursor: not-allowed;
  text-decoration: line-through;
}
.booking-button.booked-button:hover {
  background-color: #dedfe0;
}

.booking-button .small {
  font-size: 11px;
  display: block;
  opacity: 0.9;
}
.booking-button p {
  margin: 4px 0 0 0;
  font-size: 12px;
  font-weight: bold;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.terms-container {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  background: #f9f9f9;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
  font-size: 0.7rem;
  line-height: 1.2;
}

.terms-container h3 {
  font-size: 1.1rem;
  margin-block: 10px;
}

.terms-container h4 {
  font-size: 0.9rem;
  margin-block: 10px;
}

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loading-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
}/*# sourceMappingURL=local.css.map */