/* Start custom CSS for html, class: .elementor-element-b9caeb5 */.vstack {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hstack {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

/* Allgemeine Stile */
body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
    display: grid;
	justify-items: center;
}

.header {
	background-color: darkred;
	border-radius: 10px;
	margin-top: 30px;
	max-width: 600px;
	padding-left: 30px;
	padding-right: 30px;
}

.subheader{
    background-color: #888;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}
.zusatzBeitrag{
    input{
        width: 80px;
        margin-right: 10px;
        margin-left: 10px;
    }
}

/* Formular-Stile */
form {
	display: flex;
	flex-direction: column;
	max-width: 600px;
}

/* Radiobuttons */
input[type='radio'] {
	margin-right: 5px;
}

input,
button {
	margin: 10px 0;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #ccc;
}
input:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Radiobuttons */
input[type='radio'] {
	margin-right: 5px;
}
label {
	font-size: 14px;
}

/* Button-Stil */
button {
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

button:hover {
	background-color: #0056b3;
}

/* Nachrichtbox */
.message {
    max-width: 600px;
	margin-top: 15px;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	font-size: 14px;
}

.message.default {
	background-color: #e2e3e5;
	color: #383d41;
}

h2 {
	color: white;
}

.bold {
	font-weight: bold;
	font-size: 20px;
}
.zahlung {
	align-items: flex-start !important;
	justify-content: flex-start !important;
	background-color: gray;
	padding: 20px;
	border-radius: 10px;
	font-weight: bold;
}

.form-select {
	appearance: none;
	margin: 10px;
	padding: 10px;
	font-size: 1rem;
	border: 1px solid #888;
	border-radius: 6px;
	background-color: #f9f9f9;
}/* End custom CSS */