
.booking-authority {
  background: #f0f7ff;
  border: 2px solid #1e88e5;
  border-left: 6px solid #1e88e5;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 6px 16px rgba(30, 136, 229, 0.12);
  margin-top: 44px; /* 👈 pushes it down */
}

.booking-authority-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.booking-authority-header h5 {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 800;
  color: #0d47a1;
}

.booking-badge {
  display: inline-block;
  background: #1e88e5;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.booking-authority-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 12px;
}

.booking-authority-points {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.booking-authority-points li {
  font-size: 14px;
  font-weight: 700;
  color: #1e88e5;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.booking-authority-points li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e88e5;
}
