/* Magazinübersicht Stil */
.magazin-uebersicht {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

/* Jahrgangscontainer mit Linie */
.jahrgangs-container {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.jahrgangs-ueberschrift {
    font-size: 1.4rem; /* 2 Stufen kleiner */
    color: #444;
    margin-bottom: 0.2rem;
    text-align: left;
    padding-right: 2rem;
    position: relative;
}

.jahrgangs-ueberschrift::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
}

/* Jahrgangscontainer */
.jahrgang {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Einzelnes Magazin */
.magazin {
    width: 200px;
    text-align: center;
}

.magazin .cover {
    width: 100%;
    height: auto;
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}

.magazin p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.magazin p b {
    font-weight: bold;
    color: #000;
}

/* Navigation und Jahrgangsauswahl */
.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

/* Navigations-Buttons */
.nav-button, .search-button {
    background: #0056b3;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-button:hover, .search-button:hover {
    background: #004494;
}

/* Suchfeld */
.jahrgang-suche {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.jahrgang-suche input[type="number"] {
    padding: 0.3rem;
    font-size: 0.9rem;
    width: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.jahrgang-suche label {
    font-size: 0.9rem;
    color: #333;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .navigation-container {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}
* Suchfeld-Stil */
.volltextsuche {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.volltextsuche input[type="text"] {
    padding: 0.3rem;
    font-size: 0.9rem;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.volltextsuche button.search-button {
    background: #0056b3;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.volltextsuche button.search-button:hover {
    background: #004494;
}


/* Hinweistext unter dem Suchfeld */
.suchhinweis {
    font-size: 0.8rem;
    color: #555;
    margin-top: 0.5rem;
    line-height: 1.4;
    text-align: center;
}
