body {
    background-color: #1e1e1e; /* Dunklerer Hintergrund */
    color: #f0f0f0; /* Hellere Schrift */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modernere Schriftart */
    display: flex;
    flex-direction: column; /* Anordnung der Elemente untereinander */
    justify-content: flex-start; /* Beginnt am oberen Rand */
    align-items: center; /* Zentriert horizontal */
    min-height: 100vh; /* Mindesthöhe des Viewports */
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #2c2c2c; /* Etwas hellerer Hintergrund für den Container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Dezenter Schatten */
    width: 80%; /* Anpassbare Breite */
    max-width: 600px; /* Maximale Breite */
    text-align: center; /* Zentriert Text innerhalb des Containers */
    margin-bottom: 20px; /* Abstand zum nächsten Container */
}

h2,
h3 {
    color: #00bcd4; /* Akzentfarbe für Überschriften */
    margin-top: 0;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: bold;
}

select,
input[type="number"] {
    width: calc(100% - 12px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: #f0f0f0;
    box-sizing: border-box;
    font-size: 1em;
}

button {
    background-color: #00bcd4; /* Akzentfarbe für Button */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #008ba7;
}

input.copy-output {
    width: calc(100% - 12px);
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #444;
    color: #00ffcc;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    box-sizing: border-box;
}

p {
    color: #e0e0e0;
    margin-top: 10px;
    font-size: 0.9em;
}

p.error {
    color: #ff6b6b;
    font-weight: bold;
}

hr {
    border: 1px solid #555;
    margin: 25px 0;
}

ul {
    list-style: none;
    padding: 0;
    color: #e0e0e0;
    line-height: 1.7em;
    margin-bottom: 15px;
}

ul strong {
    color: #00bcd4;
}

.language-switcher {
    position: absolute;
    top: 10px;
    right: 20px;
}

.language-switcher a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9em;
}

.language-switcher a:hover {
    color: #00bcd4;
}

.transport-prices {
    margin-top: 20px;
    text-align: left;
}

.transport-prices h4 {
    color: #00bcd4;
    margin-bottom: 10px;
}

.transport-prices ul {
    margin-left: 20px;
}

.queue-overview {
    text-align: left;
    margin-top: 20px;
}

.queue-overview ul ul {
    margin-left: 40px;
    list-style-type: disc;
}