.progress-container {
	padding: 12px 12px 0px 12px;
	width: 100%;
	margin: 0 auto;
}

.progress-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: table;
	width: 100%;
	table-layout: fixed; /* Alle Spalten gleich breit */
}

.progress-step {
	display: table-cell;
	position: relative;
	text-align: center;
}

.progress-button {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
	color: #fff;
	font-weight: bold;
}

.progress-button:hover {
	filter: brightness(0.9);
}

.progress-step:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 2px;
	background: #ffffff50;
}

/* Detailbereich unterhalb der Leiste, nimmt volle Breite ein. */
.progress-details {
	background: #fff;
	border-bottom: 1px solid #ccc;
	padding: 20px;
	display: none;
}

/* Die einzelnen Schrittinhalte sind standardmäßig nicht sichtbar */
.step-content {
	display: none;
}

.step-content h3 {
	margin-top: 0;
}

.actions {
	margin-top: 15px;
}

.action-button {
	display: inline-block;
	padding: 8px 15px;
	margin: 5px 5px 0 0;
	background: #333;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	font-size: 14px;
}

.action-button:hover {
	background: #555;
}

/* Wenn Container aktiv ist, wird der Detailbereich angezeigt */
.progress-container.active .progress-details {
	display: block;
}

/* Wenn ein spezifischer Schritt aktiv ist, wird sein Inhalt angezeigt */
.progress-container.active .progress-details .step-content.active {
	display: block;
}