/*Kopfzeile*/
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #29214a;
    color: white;
    padding: 1.5rem 3rem 1.5rem 3rem;
    flex-wrap: wrap;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
}

/*Kopfzeile - Wappen Formatierung*/
.logo-img {
    height: 50px; /* Logo größer machen */
    width: auto; /* Breite automatisch */
    margin: 10px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

/*Kopfzeile - Logo Layout (Wappen+Blackwell University)*/
.header-left {
    gap: 20px; /* Abstand zwischen Bild und Text */
    font-family: 'Cinzel', serif;
}

/*Kopfzeile - Blackwell Formatierung*/
.header-left .blackwell {
    font-size: 30px;
    font-weight: bold;
}

/*Kopfzeile - Blackwell University Link-Darstellung umwandeln*/
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/*Kopfzeile - Wappen Formatierung*/
.logo-img {
    height: 50px; /* Logo größer machen */
    width: auto; /* Breite automatisch */
    margin: 10px;
}

/*Kopfzeile - Blackwell University untereinander geschrieben*/
.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* "University"jetzt zu Blackwell zentriert */
}

/*Kopfzeile - University Formatierung*/
.header-left .university {
    font-size: 18px;
    margin-top: -4px; /* ein bisschen Abstand */
}

/*Kopfzeile - Suchzeile Größe*/
.header-center {
    text-align: center;
    flex-grow: 1;
    margin: 0 1rem;
}

/*Kopfzeile - Suchzeile Breite*/
.header-center input[type="text"] {
    padding: 0.5rem;
    width: 60%;
    max-width: 400px;
    border: none;
    border-radius: 50px;
}

/*Kopfzeile - Checkbox Abstand zur Suchzeile*/
.checkboxes {
    margin-top: 0.5rem;
}

/*Kopfzeile - Checkbox Abstand zueinander*/
.checkboxes label {
    margin-right: 1rem;
}

/*Kopfzeile - Abstand Meine Bookmarks und Mein Profil zueinander*/
.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/*Kopfzeile - Meine Bookmarks und Mein Profil Link-Darstellung umwandeln*/
.header-right a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/*Kopfzeile - Meine Bookmarks und Mein Profil Icon Abstand*/
.header-right i {
    margin-right: 10px;
}

