.cbm-booking-list {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
}

.cbm-page-title {
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 28px;
	color: #222;
}

.cbm-toolbar {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

.cbm-add-btn {
	display: inline-block;
	background: #2271b1;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.15s ease;
}

.cbm-add-btn:hover {
	background: #135e96;
	color: #fff;
}

.cbm-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.cbm-card {
	position: relative;
	border: 1px solid #f2b6c0;
	border-radius: 6px;
	padding: 20px;
	background: #fff;
}

.cbm-delete-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #999;
	background: #fff;
	color: #666;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.15s ease, color 0.15s ease;
}

.cbm-delete-btn:hover {
	background: #d63638;
	border-color: #d63638;
	color: #fff;
}

.cbm-image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.cbm-image,
.cbm-image-placeholder {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
	background: #e8e8e8;
}

.cbm-ribbon-title {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg, #d81b60, #ad1457);
	color: #fff;
	padding: 6px 20px;
	border-radius: 20px;
	font-family: 'Pacifico', cursive;
	font-size: 18px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cbm-ribbon-price {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	padding: 8px 12px;
}

.cbm-price-amount {
	font-size: 30px;
	font-weight: 800;
	color: #fff40a;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cbm-price-meta {
	font-size: 11px;
	line-height: 1.2;
	color: #fff;
	font-weight: 600;
}

.cbm-edit-link {
	display: block;
	text-align: center;
	margin-top: 14px;
	font-size: 13px;
	color: #2271b1;
	text-decoration: none;
}

.cbm-edit-link:hover {
	text-decoration: underline;
}

.cbm-empty {
	text-align: center;
	color: #666;
	padding: 40px 0;
}

.cbm-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 32px;
}

.cbm-pagination a,
.cbm-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.cbm-pagination a:hover {
	background: #f5f5f5;
}

.cbm-pagination span.current {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.cbm-card.cbm-removing {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
