/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #eaeaea;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    background-color: #1a1a1a;
    padding: 20px;
    border-bottom: 1px solid #333;
}

header .logo img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

header h1 {
    font-size: 1.8em;
    color: #f5a623;
}

/* Navigation */
.menu {
    background-color: #1a1a1a;
    padding: 10px 0;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    color: #eaeaea;
    text-decoration: none;
    font-size: 1em;
    padding: 10px 20px;
    border-radius: 5px;
}

.menu ul li a.active, .menu ul li a:hover {
    background-color: #f5a623;
    color: #121212;
}

.submenu {
    background-color: #333;
    padding: 10px 0;
    margin-top: -1px;
}

.submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.submenu ul li {
    margin: 0 10px;
}

.submenu ul li a {
    color: #eaeaea;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9em;
}

.submenu ul li a:hover {
    background-color: #f5a623;
    color: #121212;
}

/* Hauptinhalt */
main {
    padding: 20px;
}

.content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.content .left {
    width: 65%;
}

.content .right {
    width: 30%;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Fortschrittsanzeige */
.progress-bar {
    width: 100%;
    background-color: #555;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar-inner {
    height: 100%;
    background-color: #4caf50;
    width: 0;
    transition: width 0.5s ease-in-out;
}

/* Abschnittsübersicht */
section {
    margin: 20px auto;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

section h2 {
    margin-bottom: 10px;
    color: #f5a623;
}

/* Einsatzbericht Übersicht */
.etb-overview ul, .team-list ul {
    list-style: none;
    padding: 0;
}

.etb-overview ul li, .team-list ul li {
    margin: 10px 0;
    line-height: 1.5;
}

.etb-overview ul li a {
    color: #f5a623;
    text-decoration: none;
    font-weight: bold;
}

.etb-overview ul li a:hover, .team-list ul li a:hover {
    text-decoration: underline;
}

/* Teamliste */
.team-list h3 {
    margin-top: 20px;
    color: #f5a623;
}

.team-list ul {
    list-style: none;
    padding: 0;
}

.team-list ul li {
    margin: 5px 0;
    line-height: 1.5;
}

/* Buttons */
.button-container {
    text-align: center;
    margin-top: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #f5a623;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: 5px;
}

.button:hover {
    background-color: #e89f1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #555;
}

table th {
    background-color: #333;
    color: #f5a623;
}

table tr:nth-child(even) {
    background-color: #2a2a2a;
}

table tr:nth-child(odd) {
    background-color: #1a1a1a;
}

/* Formulare */
form.form {
    text-align: left;
}

form.form label {
    display: block;
    margin: 10px 0 5px;
    color: #f5a623;
}

form.form input, form.form textarea, form.form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #eaeaea;
}

form.form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f5a623;
    color: #1a1a1a;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
}

form.form button:hover {
    background-color: #e89f1a;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #1a1a1a;
    color: #eaeaea;
    border-top: 1px solid #333;
    margin-top: 20px;
}
