body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
h1 {
    color: #1a3c34;
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
    vertical-align: middle;
}
h2 {
    margin-top: 3cm;
}
.thank-you-message {
    text-align: center;
    color: #1a3c34;
    font-size: 24px;
    margin-bottom: 20px;
}
.intro {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.form-section {
    margin-bottom: 30px;
}
label {
    display: block;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}
.description {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}
select, input[type="text"], textarea, input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
}
button {
    display: block;
    width: 100%;
    padding: 14px;
    background: #1a3c34;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
button:hover {
    background: #14524a;
}
.results-link {
    text-align: center;
    margin-top: 30px;
}
a {
    color: #1a3c34;
    text-decoration: none;
    font-size: 16px;
}
a:hover {
    text-decoration: underline;
}
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    table-layout: auto;
    max-width: 800px;
}
th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 12px;
    overflow: hidden;
}
th {
    background: #f8f8f8;
    color: #333;
}
td:nth-child(1) { /* Einlass-Spalte */
    max-width: 70px;
    word-wrap: break-word;
}
td:nth-child(2), td:nth-child(3), td:nth-child(4), td:nth-child(5), td:nth-child(7), td:nth-child(8), td:nth-child(10) { /* Andere Spalten */
    max-width: 60px;
    word-wrap: break-word;
}
td:nth-child(6), td:nth-child(9) { /* Aufbau Text- und Anmerkungen-Spalte */
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    position: relative;
}
.expandable {
    position: relative;
}
.expandable::after {
    content: '...';
}
.expanded-content {
    display: none;
    position: fixed;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 10000;
    max-width: 300px;
    word-wrap: break-word;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.expandable:hover .expanded-content {
    display: block;
}
.error {
    color: #d32f2f;
    font-size: 14px;
    text-align: center;
    margin: 20px 0;
}
.title-image {
    width: 150px;
    height: auto;
    vertical-align: middle;
}
.left-image {
    position: absolute;
    left: -30px;
    top: -1cm;
}
.right-image {
    position: absolute;
    right: -30px;
    top: -1cm;
}
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
    color: #444;
}
.footer-logo {
    width: 130px;
    height: auto;
    margin-top: 10px;
    vertical-align: middle;
}