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

/* Header */
header {
    background-color: #1f1f1f;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

header .logo {
    height: 50px;
    margin-right: 20px;
}

h1, h2 {
    color: #ffffff;
}

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

.content-box {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.content-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

/* Akte Inhalt */
.akte-content {
    background-color: #262626;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #d0d0d0;
    line-height: 1.6;
    word-wrap: break-word;
}

.akte-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Formulare */
.evaluation-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.evaluation-form label {
    font-weight: bold;
    color: #e0e0e0;
}

.evaluation-form select {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #1f1f1f;
    color: #d0d0d0;
}

/* Buttons */
button, .btn {
    background-color: #0078d7;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #005bb5;
}

a.btn {
    text-align: center;
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

table tr:hover {
    background-color: #333;
}
