@media (prefers-color-scheme: dark) {
    select {
        background: #333333;
    }
}

.media-mentions-filters {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    background: #66666633;
}

.filter-group {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

.filter-group label {
    font-weight: 600;
    margin-right: 5px;
}

.filter-group input,
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-group button {
}
.filter-group button:hover {
}

.media-mentions-count {
    margin: 0;
    color: #666;
}

.media-mentions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mention-item {
    padding: 16px 0;
    line-height: 1.6;
}

.mention-item h4 {
    border: 0;
    padding: 0;
    margin: 0;
}

.mention-item:last-child {
    border-bottom: none;
}

a.mention-tag {
    display: inline-block;
    background: #666666;
    padding: 2px 8px;
    margin-right: 4px;
    border-radius: 3px;
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none !important;
}

a.mention-tag:hover {
    background: #999999;
}

.mention-item.hidden {
    display: none;
}

.filter-link {
    cursor: pointer;
}

.filter-link:hover {
    text-decoration: none;
}

.filter-link.active-filter {
    background-color: #007bff;
    color: white;
}

.filter-link.active-filter::after {
    content: " ×";
    margin-left: 4px;
    font-weight: bold;
    transition: transform 0.2s;
}

.filter-link.active-filter:hover::after {
    transform: scale(1.2);
}