/* General Styles for Prices Page */
.price-table-container {
    width: 80%;
    margin: 0 auto 20px auto;
    padding: 20px 0;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-table td:nth-child(3),
.price-table th:nth-child(3) {
    width: 10%; /* Breite der Preis-Spalte */
    text-align: center; /* Optional: Preis zentrieren */
}

.price-table td:nth-child(1),
.price-table th:nth-child(1) {
    width: 10%; /* Breite der Preis-Spalte */
    text-align: center; /* Optional: Preis zentrieren */
}


.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.price-table th {
    background-color: #007b8a;
    color: white;
}

.price-table td {
    background-color: white;
    color: #333;
}

/* Media Query für mobile Geräte */
@media (max-width: 600px) {
	
	
	.price-table-container {
		overflow-x: auto; /* Ermöglicht horizontales Scrollen */
	}

	.price-table td:nth-child(3),
	.price-table th:nth-child(3) {
		width: auto; /* Entfernt die feste Breite */
		text-align: right; /* Standardausrichtung */
	}

	.price-table {
		width: 100%; /* Passt die Tabelle an die verfügbare Breite an */
		font-size: 0.9em; /* Optional: Schriftgröße etwas verkleinern */
		
	}

	.price-table {
	border-collapse: separate; /* Wichtig, damit border-spacing funktioniert */
	border-spacing: 10px 15px; /* Horizontaler und vertikaler Abstand */
	}

	.price-table th, .price-table td {
		padding: 8px; /* Reduziert die Polsterung, um Platz zu sparen */
		text-align: center; /* Zentriert Text für bessere Lesbarkeit */
	}

	.price-table thead {
		display: none; /* Versteckt Tabellenkopf (optional) */
	}

.price-table td {
    display: block;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.price-table tr {
    display: flex;
    flex-direction: column;
}

.price-table td:first-child {
	 text-align: left;
    width: 100%;
}


	.price-table td:before {
		content: attr(data-label); /* Label vor jeder Zelle anzeigen */
		font-weight: bold; /* Fett formatieren */
		margin-bottom: 5px; /* Abstand zwischen Label und Inhalt */
		display: block; /* Label auf einer eigenen Zeile */
	}

	/* Neue Regel für Listen innerhalb der Tabelle */
	.price-table td ul {
		margin: 25 0 0 0;
		padding: 0;
		list-style: disc;
		text-align: left; /* Links ausrichten */
		padding-left: 1.5em; /* Standardabstand für Listenpunkte */
	}
	
}






.price-info, .note {
    font-size: 1em;
    margin: 10px 0;
    color: #555;
}

.price-picture-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
    background: #f7f7f7;
    border-radius: 10px;
    text-align: center;
}

.heading-center {
    text-align: center;
}

.text-left {
    text-align: left;
    width: 75%;
    margin: 0 auto 20px auto;
    padding: 20px;
    line-height: 1.6;
}

/* Media Query for mobile devices */
@media (max-width: 600px) {
    .text-left {
        width: 90%;
    }
}

#price-button-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

