/* Basis-Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    max-height:1920px;
}

/* Navigation */
.navbar-container {
    position: relative;
}

.navbar {
    display: flex;
    flex-direction: row;
    background-color: #333;
    padding: 0 24px;
    align-items: center;
    justify-content: space-between;
}

    .navbar ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
    }

    .navbar li {
        padding: 10px;
    }

    .navbar a {
        color: white;
        text-decoration: none;
    }

/* Menü-Toggle-Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 10px;
}

/* Responsive Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 999;
    }
.navitem {
    position:fixed;
    left:-100%;
    top: 70px;
    flex-direction: column;
    background-color: #262626;
    width: 100%;
    text-align: center;
    transition: 0.3s;
}
.navbar:active{
    left: 0;
}

    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        text-align: center;
        padding: 10px;
    }

    .navbar.visible ul {
        display: flex;

    }
}

/* Hauptbereich */
main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #ffcc00;
}

/* Links */
a {
    color: #ffcc00;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

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

    table td {
        padding: 10px;
        border: 1px solid #444;
    }

/* Footer */
footer {
    text-align: center;
    margin-top: auto;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
}

/* Social Icons */
.social-icons {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 5px;
    margin: 0;
}

    .social-icons a {
        color: #fff;
        font-size: 24px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            color: #ffcc00;
        }    