/* 标签筛选器样式 */
.tag-filter {
    margin-bottom: 20px;
    padding: 15px;
    background: #2e3345;
    border-radius: 8px;
}

.tag-filter h3 {
    margin-top: 0;
    color: #61dafb;
    font-size: 1.2em;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-checkbox {
    display: flex;
    align-items: center;
    background: #82d6f8;
    padding: 3px 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.tag-checkbox:hover {
    background: #61dafb;
}

.tag-checkbox input {
    margin-right: 5px;
}

/* 标签筛选按钮样式 */
.tag-filter-button {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 25px;
    color: #1f1e2f;
    background: #76d8f9;
    font-size: 1em;
    outline: none;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    transition: background 0.3s ease;
}

.tag-filter-button:hover {
    background-color: #d43d8f; /* 鼠标悬停时的颜色 */
}

/* 标签筛选容器样式 */
#tagFilterContainer {
    background: #2e3345;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}