.bgc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.bgc-service-card,
.bgc-booking-form {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}

.bgc-service-card__meta {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.bgc-button {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.bgc-booking-form__form input,
.bgc-booking-form__form select,
.bgc-booking-form__form textarea {
  width: 100%;
  max-width: 560px;
  padding: 10px;
  margin-top: 6px;
}

.bgc-notice {
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.bgc-notice--success {
  background: #ecf9f0;
  border: 1px solid #6abf7b;
}

.bgc-notice--error {
  background: #fff1f0;
  border: 1px solid #e06b6b;
}

#bgc-slots-message {
  display: block;
  margin-top: 8px;
}
