.tags-container-one {
    width: 100%;
    overflow: hidden;
}

.tags-list-one {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: flex-start;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.tag-item-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.65rem;
    color: grey;
    border: 1.5px solid grey;
    border-radius: 6px;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}

.tag-item-one:hover {
    background: #f0f0f0;
    color: grey;
    border-color: var(--hover-border-color, blueviolet);
}

.tag-item-one svg {
    flex-shrink: 0;
}

/* Classes de taille */
.tag-item-one.small-one {
    font-size: 0.65rem;
    padding: 2px 4px;
    margin: 2px 2px 0 0;
    gap: 2px;
}

.tag-item-one.small-one svg {
    width: 10px !important;
    height: 10px !important;
}

.tag-item-one.medium-one {
    font-size: 0.75rem;
    padding: 3px 6px;
    gap: 3px;
}

.tag-item-one.medium-one svg {
    width: 12px !important;
    height: 12px !important;
}

.tag-item-one.large-one {
    font-size: 0.875rem;
    padding: 4px 8px;
    gap: 4px;
}

.tag-item-one.large-one svg {
    width: 14px !important;
    height: 14px !important;
}