body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
    /* NEU: Flexbox für die Ausrichtung */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NEU: Titel im Header anpassen */
header h1 {
    margin: 0;
    font-size: 1.5rem;
}

main {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
}

button {
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

/* Einstellungs-Sektion */
#settings-section {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#settings-section h2 {
    margin-top: 0;
}

#update-container p {
    margin: 0 0 0.5rem 0;
}

/* Navigation */
.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    line-height: 3rem;
    border: 1px solid white;
    border-radius: 5px;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.nav-link:hover {
    background-color: white;
    color: #333;
}

#search-input {
    flex-grow: 1;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#share-count {
    flex-grow: 1;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
