.tags-filter-container {
    background-color: #2a2a2a;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    margin: 10px auto;
}

.tags-filter-container::-webkit-scrollbar {
    width: 8px;
}

.tags-filter-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 4px 0;
}

.tags-filter-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4a9eff 0%, #357abd 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tags-filter-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5aa8ff 0%, #4285d1 100%);
    transform: scaleX(1.2);
}

.tags-filter-container::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #357abd 0%, #2563eb 100%);
}

.tags-filter-container .list_search_tags {
    display: flex;
    flex-direction: column;
    padding: 7px 14px;
}

.tag-checkbox-item {
    display: block;
    width: 100%;
}

.tag-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    padding: 5px 0px;
    transition: color 0.2s ease;
    user-select: none;
    margin: 0px;
}

.tag-checkbox-label:hover {
    color: #4a9eff;
}

.tag-checkbox {
    display: none;
}

.tag-checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 2px;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    background-color: transparent;
    transition: all 0.2s ease;
}

.tag-checkbox-label:hover .tag-checkbox-custom {
    border-color: #4a9eff;
}

.tag-checkbox:checked + .tag-checkbox-custom {
    background-color: #4a9eff;
    border-color: #4a9eff;
}

.tag-checkbox:checked + .tag-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tag-text {
    flex-grow: 1;
}

.tag-checkbox:checked ~ .tag-text {
    color: #4a9eff;
}

.tag-checkbox-custom-round {
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    background-color: transparent;
    transition: all 0.2s ease;
}