body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background: #002366;
    color: white;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

nav {
    background: #0055A4;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

nav a:hover {
    background: #003580;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

h1, h2 {
    color: #002366;
    text-align: center;
}

p {
    font-size: 16px;
    color: #333;
}

footer {
    background: #002366;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #0055A4;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background: #003580;
}

.result {
    background: #e6f0ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.result h2, .result h3 {
    color: #002366;
}

.result p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}/* Tabellen-Styling für Durchschnittslöhne */
.lohntabelle {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

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

.lohntabelle th {
    background-color: #002366;
    color: white;
}

.lohntabelle tr:nth-child(even) {
    background-color: #f2f2f2;
}

.lohntabelle tr:hover {
    background-color: #d9e6ff;
}