/* Allgemeine Stile für den Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fc;
    margin: 0;
	padding: 0;
    color: #333;
	padding-bottom: 20px;
}

/* Überschriften */
h1, h2 {
    color: #005f99;
    margin-top: 20px;
}

/* Container für die Hauptinhalte */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Tabellen-Stile */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 0;
	padding-left: 12px;
	padding-right: 12px;	
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #005f99;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Stile für Prozentanzeigen */
strong {
    color: #0077cc;
}

/* Stile für Absätze */
p {
    font-size: 1.1em;
    line-height: 1.6em;
    margin: 10px 0;
}

/* Boxen für prozentuale Anteile */
.anteil-box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.anteil-box div {
    padding: 10px;
    background-color: #0077cc;
    color: white;
    border-radius: 5px;
    width: 48%;
    text-align: center;
}

.anteil-box div strong {
    font-size: 1.2em;
}

/* Formulareingabefelder und Buttons */
input[type="text"],
select {
    padding: 8px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin: 0;
    font-size: 1em;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #005f99;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #004478;
}

/* Hinzufügen eines Hover-Effekts für Eingabefelder */
input[type="text"]:focus,
select:focus {
    border-color: #005f99;
    outline: none;
}

/* Einfaches Layout für die Hauptinhalte */
section {
    margin-bottom: 30px;
}

/* Allgemeine Container für Bereiche */
section h3 {
    color: #005f99;
    margin-bottom: 10px;
}

/* Anzeigen des Ergebnisses am Ende der Seite */
.result-box {
    background-color: #e1f0f7;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Hinweis auf Fehler oder leere Tabellen */
.no-data {
    text-align: center;
    color: #ff0000;
    font-weight: bold;
}

form{
	margin-bottom: 20px;
}

button{
	margin: 10px;
	padding: 10px;
	background-color: red;
	color: white;
}
