  .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag-pill {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #e5f0ff;
    color: #003366;
    border-radius: 999px;
    font-size: 14px;
    display: inline-flex;
    white-space: nowrap;       
    gap: 6px;                 
  }

    .tree-tag-pill {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #e5f0ff;
    color: #003366;
    border-radius: 999px;
    font-size: 14px;
    display: inline-flex;
    white-space: nowrap;       
    gap: 6px;                 
  }

  .tag-close {
    cursor: pointer;
    font-weight: bold;
    border: none;
    background: none;
    font-size: 14px;
  }

    .tree-tag-close {
    cursor: pointer;
    font-weight: bold;
    border: none;
    background: none;
    font-size: 14px;
  }


  .tag-close:hover {
    color: red;
  }

    .contenedor {
      display: flex;
      gap: 20px;
    }

    .tag-autocomplete {
      position: relative;
      width: 260px;
    }

    .tag-input-row {
      display: flex;
      gap: 5px;
    }

    .tags-list {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 150px;
      overflow-y: auto;
      border: 1px solid #ccc;
      background: white;
      display: none;
      z-index: 1000;
    }

    .item {
      padding: 8px;
      cursor: pointer;
    }

    .item:hover {
      background: #eee;
    }

    .seleccionados {
      width: 260px;
      border: 1px solid #ccc;
      padding: 10px;
      min-height: 150px;
    }

    .item-seleccionado {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px;
      border-bottom: 1px solid #eee;
    }