.driven-sbs-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	background: var(--color-background);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.driven-sbs-heading {
	font-size: 24px;
	color: var(--color-heading);
	margin-bottom: 15px;
}

.driven-sbs-card {
	padding: 15px;
	background: var(--color-light);
	border-radius: 8px;
	margin-bottom: 15px;
}

.driven-sbs-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.driven-sbs-input {
	width: 100%;
	padding: 10px;
	border: 1px solid #D6D6D6 !important;
	border-radius: 6px;
}

.driven-sbs-button {
	padding: 10px 15px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 6px;
}

.driven-sbs-button:hover {
	background: var(--color-primary-dark);
}

.driven-sbs-error {
	color: red;
	font-weight: bold;
}

/* Two-column layout for booking details */
.booking-details-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-details-column {
  flex: 0 0 48%;
  box-sizing: border-box;
}

/* On mobile, stack the columns */
@media (max-width: 768px) {
  .booking-details-column {
	flex: 0 0 100%;
  }
}

/* Payment instructions styling */
.payment-instructions {
  background-color: #f0f0f0;
  padding: 15px;
  margin-top: 20px;
}
