.filters {
    margin-bottom: 12px;
}

.filter-section {
    margin-bottom: 6px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.filter-tag {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid;
    line-height: 1.2;
}

.filter-tag:hover {
    opacity: 0.8;
}

.filter-tag.active {
    font-weight: bold;
}

.filter-tag.project {
    background: #e8f4fd;
    color: #2980b9;
    border-color: #3498db;
}

.filter-tag.project.active {
    background: #3498db;
    color: white;
    border-color: #2980b9;
}

.filter-tag.tag {
    background: #f9ebea;
    color: #c0392b;
    border-color: #e74c3c;
}

.filter-tag.tag.active {
    background: #e74c3c;
    color: white;
}
