/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #0056b3;
}

a:focus, a:hover {
    text-decoration: underline;
    outline: none;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.skip-link:focus {
    position: static;
    background-color: #0056b3;
    color: #fff;
    padding: 10px;
    z-index: 100;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}

header nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
}

header nav ul li a {
    color: #fff;
    padding: 0.5rem 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

footer nav ul li a {
    color: #fff;
    padding: 0.5rem;
}

/* Postbit */
.postbit {
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 1rem 0;
    padding: 1rem;
}

.postbit-user {
    display: flex;
    align-items: center;
}

.postbit-user .user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.postbit-user .user-info {
    margin-left: 1rem;
}

.postbit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Medienanfragen für responsive Darstellung */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    .postbit-user {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* custom.css */

#logo {
    float: left !important;
}

.wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* custom.css */

/* Stellt sicher, dass die Navigationslinks in einer Reihe sind */
.menu {
    display: flex;
    justify-content: flex-start; /* Links ausrichten */
    align-items: center; /* Vertikale Zentrierung */
    list-style: none; /* Entfernt Aufzählungszeichen */
    padding: 0;
    margin: 0;
}

/* Styling für die einzelnen Menüelemente */
.menu li {
    margin-right: 20px; /* Abstand zwischen den Links */
}

/* Links im Menü */
.menu li a {
    text-decoration: none;
    color: #333; /* Textfarbe nach Wunsch anpassen */
    font-size: 16px;
}

/* Bei Hover: Farbe ändern */
.menu li a:hover {
    color: #007BFF; /* Farbe bei Hover anpassen */
}
