/* CSS Document */

.cart-container {
	width: 100%;
	height: 82vh;
	overflow-y: auto;
	background-color: #2981b7; /* Hintergrund bleibt blau */
	color: white;
	font-size: 13px;
	font-style: italic;
	text-align: left; /* Besser für Lesbarkeit */
}

.cart-container p {
	text-align: center;
}

/* Einzelnes Cart-Item */
.cart-container .cart-item {
	background: #136ca2;
	color: white;
	padding: 20px;
	margin-bottom: 20px;
	position: relative;
	font-style: normal; /* normale Schrift für Inhalt */
	font-size: 13px;
}

/* Titel */
.cart-container .cart-item .cart-title {
	font-weight: bold;
	font-size: 1.1em;
	margin-bottom: 15px;
	text-align: left;
}

/* Entfernen-Icon */
.cart-container .cart-item .remove-item {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	transition: background-color 0.2s ease;
}

.cart-container .cart-item .remove-item::before {
	content: '×';
	color: #2981b7;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}

.cart-container .cart-item .remove-item:hover {
	background-color: #ff5252;
}

.cart-container .cart-item .remove-item:hover::before {
	color: #fff;
}


/* Zeile: Label links, Value rechts */
.cart-container .cart-item .cart-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}

.cart-container .cart-item .label {
	font-weight: bold;
	min-width: 100px;
	color: #e3f2fd;
}

.cart-container .cart-item .value {
	text-align: right;
	flex-grow: 1;
}

/* Teilnehmerliste */
.cart-container .cart-item .cart-participants {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.cart-container .cart-item .cart-participants li {
	margin-bottom: 3px;
}

.cart-container .cart-item .cart-participants {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.cart-container .cart-item .cart-participants li {
	margin-bottom: 2px;
	color: #fff;
	font-weight: normal;
	font-style: normal;
}

/* Preisbereiche */
.cart-container .cart-item .cart-meta-price-diff {
	margin-top: 15px;
	font-size: 1.2em;
	color: #c8e6c9;
	font-weight: bold;
}

.cart-container .cart-item .cart-meta-old-price {
	font-size: 0.95em;
	color: #ffcdd2;
	text-decoration: line-through;
	margin-top: 3px;
}

/* Preisänderungen / Warnungen */
.cart-container .cart-item .cart-meta-price-change {
	font-weight: bold;
	margin-top: 8px;
	padding: 6px 10px;
	border-radius: 4px;
}

.cart-container .cart-item .cart-meta-price-increased {
	background-color: #ff9800;
	color: white;
}

.cart-container .cart-item .cart-meta-price-decreased {
	background-color: #136ca2;
    color: white;
    border: 1px solid white;
}

.cart-container .cart-item .cart-meta-price-ok {
	background-color: #607d8b;
	color: white;
}

/* Status-Hinweise */
.cart-container .cart-item .cart-meta-blocked {
	background: #d9534f;
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 13px;
	margin-top: 5px;
}

.cart-container .cart-item .cart-meta-limited {
	background: #f0ad4e;
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 13px;
	margin-top: 5px;
}

.cart-container .cart-item .cart-meta-warning {
	/*background: #5bc0de;*/
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 13px;
	margin-top: 5px;
}

/* Checkout-Button */
.checkout-btn {
	width: calc(90% - 20px);
	padding: 10px;
	background: #28a745;
	color: white;
	font-size: 18px;
	text-align: center;
	cursor: pointer;
	position: fixed;
	bottom: 30px;
	left: 50%;
	height: 40px;
	transform: translateX(-50%);
	line-height: 40px;
}


.cart-blocked {
	background-color: #ffe5e5;
	border: 1px solid #ff7b7b;
	opacity: 0.85;
	pointer-events: none; /* kein Klicken mehr möglich */
}

.cart-meta-blocked-language {
	color: #d8000c;
	background-color: #ffd2d2;
	padding: 5px 10px;
	margin-top: 10px;
	border-radius: 4px;
	font-weight: bold;
}

.text-red {
	color: #cc0000;
}

/* === Sprachstatus / Language Availability === */
.text-red {
	color: #ff4d4d;
}

.language-blocked {
	color: #d8000c;
	background-color: #ffd2d2;
	padding: 5px 10px;
	margin-top: 10px;
	border-radius: 4px;
	font-weight: bold;
}

.booking-warning {
	background-color: #ffe3e3;
	color: #d8000c;
	padding: 8px 12px;
	margin-top: 10px;
	border-left: 4px solid #d8000c;
	border-radius: 4px;
}


