/* Chanakya Booking - Styles */

.cb-booking-form-wrap {
	max-width: 480px;
	margin: 0 auto;
	padding: 30px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cb-form-row {
	margin-bottom: 16px;
}

.cb-form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #333;
}

.cb-form-row input[type="text"],
.cb-form-row input[type="tel"],
.cb-form-row input[type="email"],
.cb-form-row input[type="date"],
.cb-form-row input[type="number"],
.cb-form-row select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
}

.cb-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff6ef;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 18px;
}

#cb-total-amount {
	font-weight: 700;
	color: #ff5e62;
}

.cb-submit-btn {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #ff9933 0%, #ff5e62 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.cb-submit-btn:hover {
	opacity: 0.9;
}

.cb-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cb-form-message {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 14px;
	display: none;
}

.cb-form-message:not(:empty) {
	display: block;
}

.cb-message-success {
	background: #e7f7ea;
	color: #1a7f37;
}

.cb-message-error {
	background: #fdecea;
	color: #c62828;
}

/* Admin bookings screen */

.cb-stats-row {
	display: flex;
	gap: 16px;
	margin: 16px 0 24px;
}

.cb-stat-box {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 16px 24px;
	min-width: 160px;
}

.cb-stat-number {
	display: block;
	font-size: 26px;
	font-weight: 700;
	color: #ff5e62;
}

.cb-stat-label {
	display: block;
	font-size: 13px;
	color: #666;
	margin-top: 4px;
}

.cb-filters-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 16px;
}

.cb-filters-form input[type="text"],
.cb-filters-form input[type="date"],
.cb-filters-form select {
	padding: 6px 8px;
}

.cb-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
}

.cb-status-paid {
	background: #e7f7ea;
	color: #1a7f37;
}

.cb-status-pending {
	background: #fff8e1;
	color: #9a7300;
}

.cb-status-failed {
	background: #fdecea;
	color: #c62828;
}
