/* CBL Event Guests — styles frontend (cart/checkout/thankyou) ET admin (commandes) */

/* Admin : liste des invités sur la fiche commande */
.guests-list { margin: 10px 0; padding: 10px; background: #f9f9f9; border-left: 4px solid #0073aa; }
.guest-item { padding: 8px 0; border-bottom: 1px solid #ddd; }
.guest-item:last-child { border-bottom: none; }
.guest-name { font-weight: 600; color: #0073aa; }
.guest-email { color: #666; font-size: 13px; }

/* Frontend : formulaire d'ajout d'invités sur le panier */
.guest-all-products-container { margin: 30px 0; }
.guest-product-container {
	margin: 20px 0;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 2px solid #0073aa;
}
.guest-product-header {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #0073aa;
}
.guest-list-container { margin: 20px 0; }
.guest-save-buttons { margin: 20px 0; text-align: center; }
.add-guest-btn {
	background: #0073aa;
	color: white;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}
.add-guest-btn:hover { background: #005a87; transform: translateY(-2px); }
.add-guest-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }
.guest-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.remove-guest-btn {
	background: #e74c3c;
	color: white;
	padding: 6px 12px;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.remove-guest-btn:hover { background: #c0392b; }
.guest-count-info { font-style: italic; }
.guest-count-info .current-count { font-weight: 700; color: #0073aa; }
.guest-field-group {
	margin-bottom: 20px;
	padding: 15px;
	background: white;
	border-left: 4px solid #0073aa;
	border-radius: 4px;
}
.guest-field {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}
.guest-row { margin-bottom: 12px; }
.guest-col {
	display: inline-block;
	width: 48%;
	margin-right: 2%;
	vertical-align: top;
}
.guest-col:last-child { margin-right: 0; }
.save-guests-btn {
	background: #0073aa;
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 15px;
}
.save-guests-btn:hover { background: #005a87; }
