/* Hauptcontainer */
.genres_container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Überschrift */
.genres_title {
    text-align: center;
    margin-bottom: 20px;
}

/* Suchleiste */
.genres_search-bar {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}

/* Fehlermeldung, wenn kein Genre gefunden wurde */
.genres_no-results {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #f5c6cb;
}

/* Genres-Liste */
.genres_list {
    margin-top: 10px;
}

/* Genre-Karten */
.genres_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: #fafafa;
    margin-bottom: 10px;
    border-radius: 5px;
    /* transition: background 0.3s ease-in-out; */
}

/* Letztes Genre ohne Rand */
.genres_card:last-child {
    border-bottom: none;
}

/* Hover-Effekt für Genre-Karten */
.genres_card:hover {
    /* background-color: #e0e0e0; */
}

/* Genre-Name bleibt links */
.genres_name {
    font-size: 18px;
    font-weight: bold;
    flex-grow: 1;
	text-align: left;
}

/* Container für Stationen & Weltkugel rechts */
.genres_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Anzahl der Stationen (rechts) */
.genres_score {
    font-size: 14px;
    color: #777;
    text-align: right;
    min-width: 70px;
}

/* Weltkugel-Icon (rechts) */
.genres_world-icon {
    cursor: pointer;
    font-size: 20px;
    color: #007bff;
    transition: color 0.3s;
}

.genres_world-icon:hover {
    color: #0056b3;
}
/* Steuerungsleiste (Sortierung) */
.genres_controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.genre_fa-globe {
	color: #282828;
}

.genre_fa-globe:hover {
	color: #005ebd;
}

/* #genres_sort { */
    /* padding: 8px; */
    /* font-size: 14px; */
    /* border: 1px solid #ccc; */
    /* border-radius: 5px; */
    /* cursor: pointer; */
/* } */

/* "Mehr anzeigen"-Button */
#genres_show-more {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#genres_show-more:hover {
    background-color: #0056b3;
}
@media (max-width: 768px) {	
	.genres_name {
		font-size: 14px;
	}
}