.addCategoryComp {
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
}

.category-tag,
.subcategory-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 5px 5px 0 0;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: #e7f1ff;
    color: #0d6efd;
}

.category-tag .remove-btn,
.subcategory-tag .remove-btn {
    font-weight: bold;
    font-size: 0.8rem;
    color: #dc3545;
    margin-left: 8px;
    cursor: pointer;
}

.category-tag.selected {
    background-color: #0d6efd;
    color: white;
}

.subcategory-tag {
    background-color: #f1f3f5;
    color: #495057;
}

.others-tag {
    font-style: italic;
    opacity: 0.8;
}