.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/*Bücher anfragen - Suchfeld Größe*/
.search-container input[type="text"] {
    padding: 0.5rem;
    width: 60%;
    max-width: 400px;
    border: 1px solid #ccc; /* Helle graue Umrandung */
    border-radius: 50px;
}

/*Studentenverwaltung - Suchleiste*/
.search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/*Studentenverwaltung - Suchinput*/
.search-bar input {
    width: 250px;
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid #ccc;
}

/*Alle Ausleihen - Grundlegende Struktur des Dropdowns */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

/*Alle Ausleihen - Dropdown Menü Layout*/
.dropdown-btn {
    padding: 0.5rem;
    font-size: 16px;
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 250px;
}

/*Alle Ausleihen - Dropdown Menü Inhalt Formatierung*/
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    /*margin-top: 5px;*/
}
/*Alle Ausleihen - Dropdown Menü Inhalt Formatierung*/
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/*Alle Ausleihen - Hover-Effekt für die Links */
.dropdown-content a:hover {
    background-color: #29214a; /* Hintergrundfarbe blau */
    color: white; /* Schriftfarbe weiß */
}

/*Alle Ausleihen - Dropdown anzeigen, wenn der Button gehovt wird */
.custom-dropdown:hover .dropdown-content {
    display: block;
}

/*Alle Ausleihen - Dropdown Menü Anordnung*/
.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

/*Alle Ausleihen - Abstand Überschrift zu Dropdown Btn*/
.sort-control,
.filter-control{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/*Alle Ausleihen - Dropdown Überschriften Layout*/
.sort-control span,
.filter-control span {
    font-weight: bold;
    margin-bottom: 0.5rem;
}