/* Grundlegendes Design */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 600px;
    width: 100%;
    border-top: 5px solid #1e3a8a; /* Logo-Blau */
}

h1 {
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eab308; /* Logo-Gold/Gelb */
    padding-bottom: 10px;
}

h2 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 25px;
}

.price-display {
    background: #1e3a8a; /* Logo-Blau */
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #eab308;
}

.price-display span {
    font-weight: bold;
    color: #facc15; /* Akzent-Gelb */
}

button {
    background-color: #1e3a8a;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #172554;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Formular-Elemente */
.question {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #1e3a8a;
}

input[type="text"],
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; /* Wichtig für korrekte Breite */
}

input[type="text"]:focus,
select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Radio Buttons Styling */
.options {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}

.options label {
    cursor: pointer;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: background 0.2s;
}

.options label:hover {
    background: #f0f0f0;
}

/* Buttons */

.reset-button {
    background-color: #e74c3c;
    margin-top: 30px;
}

.reset-button:hover {
    background-color: #c0392b;
}

/* Ergebnistabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f9fa;
    color: #7f8c8d;
    text-transform: uppercase;
    font-size: 0.85rem;
}

tr:hover {
    background-color: #fdfdfd;
}

/* Nachrichten */
.message {
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
}

a {
    display: inline-block;
    margin-top: 15px;
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Ergänzung am Ende der style.css */
.price-info {
    font-size: 0.85rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin-bottom: 20px;
}

.price-info ul {
    margin: 5px 0 0 15px;
    padding: 0;
}

/* Zusätzliches Styling für die Hinweise */
.info-box {
	background-color: #f9f9f9;
	border-left: 4px solid #007bff;
	padding: 15px;
	margin: 20px 0;
	font-size: 0.95em;
	line-height: 1.5;
}
.info-box ul {
	margin: 5px 0 0 20px;
	padding: 0;
}
.warning-text {
	color: #d9534f;
	font-weight: bold;
}