.show-genres {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.show-genre__item {
    padding: 4px 8px;
    border: 2px solid currentColor;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: default;
}

a.show-genre__item[href]:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

a.show-genre__item[href] {
    cursor: pointer;
}