/**
 * Booking Page Styles
 */

.tvb-booking-container {
	max-width: 600px;
	margin: 20px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tvb-booking-header {
	margin-bottom: 30px;
	text-align: center;
}

.tvb-booking-header h2 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 28px;
}

.tvb-current-balance {
	padding: 15px;
	background: #f5f5f5;
	border-radius: 5px;
	font-size: 16px;
}

.tvb-balance-amount {
	font-size: 24px;
	font-weight: bold;
	color: #0073aa;
	margin: 0 5px;
}

.tvb-service-selection {
	margin-bottom: 30px;
}

.tvb-service-selection h3 {
	margin: 0 0 20px 0;
	color: #333;
	font-size: 20px;
}

.tvb-service-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tvb-service-option {
	position: relative;
}

.tvb-service-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.tvb-service-option label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border: 2px solid #ddd;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
}

.tvb-service-option label:hover {
	border-color: #0073aa;
	background: #f0f8ff;
}

.tvb-service-option input[type="radio"]:checked + label,
.tvb-service-option.selected label {
	border-color: #0073aa;
	background: #e6f3ff;
	box-shadow: 0 2px 8px rgba(0, 115, 170, 0.2);
}

.tvb-service-duration {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.tvb-service-price {
	font-size: 24px;
	font-weight: bold;
	color: #0073aa;
}

.tvb-payment-section {
	margin: 30px 0;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
}

#tvb-paypal-button-container {
	margin: 20px 0;
	min-height: 50px;
}

#tvb-payment-messages {
	margin-top: 15px;
	min-height: 30px;
}

.tvb-message {
	padding: 12px 15px;
	border-radius: 5px;
	margin: 10px 0;
	font-size: 14px;
}

.tvb-message-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.tvb-message-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.tvb-message-info {
	background: #d1ecf1;
	color: #0c5460;
	border: 1px solid #bee5eb;
}

.tvb-booking-footer {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	text-align: center;
}

.tvb-note {
	margin: 0;
	color: #666;
	font-size: 14px;
	font-style: italic;
}

.tvb-booking-error {
	padding: 20px;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-radius: 5px;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.tvb-booking-container {
		margin: 10px;
		padding: 20px;
	}
	
	.tvb-service-option label {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.tvb-service-price {
		align-self: flex-end;
	}
}

