/* Allgemeine Reset- und Grundstyles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a202c;
    color: #f7fafc;
}

/* Header-Stile */
header {
    background-color: #1a202c; /* Entspricht Tailwind bg-gray-900 */
}

header h1 {
    font-size: 2.5rem;
}

nav {
    background-color: #111827; /* Das ist der dunkle Hintergrund, der zu Tailwind's bg-gray-900 passt */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #63b3ed; /* Blau-Ton für Hover */
}

/* Hauptinhalt */
main {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 10px;
}

/* Buttons */
button {
    background-color: #2d3748;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4a5568; /* Etwas hellere Grautöne für Hover-Effekt */
}

/* Footer */
footer {
    background-color: #2d3748;
    color: #cbd5e0;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Zusätzliche Layout-Hilfen */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Formulare */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

input[type="submit"] {
    background-color: #2d3748;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #4a5568;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    main {
        padding: 20px;
    }
}
