﻿
*, *::before, *::after {
	box-sizing: border-box;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.body {
	font-family: Arial, sans-serif;
	margin: 20px;
}
.buttongroup {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px; /* Abstand zwischen den Buttons */
}
.buttongroup.invisible {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 10px; /* Abstand zwischen den Buttons */
}
.button {
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

input.buttonback {
	height: 50px;
	font-size: 16px;
	line-height: normal;
	padding: 0 20px;
	background-color: #ff6a00;
	color: white;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
}

input.buttonvorward {
	height: 50px;
	font-size: 16px;
	line-height: normal;
	padding: 0 20px;
	background-color: #4CAF50;
	color: white;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
}
.buttonback,
.buttonvorward {
	font-weight: bold;
}


	button:hover {
		background-color: #45a049;
	}



.bestell-steps {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.step-item {
	padding: 0.4rem 0.8rem;
	background-color: #e9ecef;
	border-radius: 4px;
	font-size: 0.9rem;
	color: #333;
}

	.step-item.active {
		background-color: #007bff;
		color: #fff;
		font-weight: bold;
	}


@media (max-width: 768px) {
	input.buttonback,
	input.buttonvorward {
		padding: 8px 8px;
		font-size: 12px;
		height: 35px;
	}
}