#treeview{
    background: #f5f5f5;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 550px;
    overflow-y: auto;
    box-shadow:  0px 2px 3px rgba(0, 0, 0, 0.5);
  }
  
  .btnPerm{
    margin-left: 10px; /* Espaçamento entre o botão e o texto */
    color: #fff; /* Cor do texto */
    border: none; /* Remover borda */
    padding: 5px 10px; /* Espaçamento interno */
    cursor: pointer; /* Cursor ao passar */
    border-radius: 100%;
  }
  
  /* Remove default bullets */
  ul, #UlTree {
    list-style-type: none;
  }
  
  .custom-file-input:hover{
    cursor: pointer;
  }
  
  .fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }
  
  .organizeEmbedded{
    margin-bottom: 3%;
  }
  
  
  /* Remove margins and padding from the parent ul */
  #UlTree {
    margin: 0;
    padding: 0;
    padding: 10px;
  }
  
  .nmReal{
    font-family: 'Montserrat', sans-serif;
    font-size: small;
  }
  
  .liNms{
    padding: 5px 10px; /* Espaçamento interno */
    position: relative; /* Para permitir o posicionamento relativo */
    border-bottom: 1px solid #ccc;
    width: 40%;
  }
  
  .liNms::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px; /* Ajuste para a posição da seta */
    border-left: 1px solid #ccc; /* Linha vertical */
    height: 100%;
  }
  
  .liNms ul {
    padding-left: 20px; /* Espaçamento para compensar a seta */
  }
  
  .nmReal::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px; /* Ajuste para a posição da seta */
    border-left: 1px solid #ccc; /* Linha vertical */
    height: 100%;
  }
  
  /* Style the caret/arrow */
  .caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Create the caret/arrow with a unicode, and style it */
  .caret::before {
    content: "\25B6";
    color: black;
    display: inline-block;
    margin-right: 6px;
  }
  
  /* Rotate the caret/arrow icon when clicked on (using JavaScript) */
  .caret-down::before {
    transform: rotate(90deg);
  }
  
  /* Hide the nested list */
  .nested {
    display: none;
  }
  
  /* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
  .active {
    display: block;
  }
  
  .js-deleteitem {
      margin-left: 10px; /* Espaçamento entre o botão e o texto */
      background-color: #dc3545; /* Cor de fundo */
      color: #fff; /* Cor do texto */
      border: none; /* Remover borda */
      border-radius: 5px; /* Arredondar bordas */
      padding: 5px 10px; /* Espaçamento interno */
      cursor: pointer; /* Cursor ao passar */
  }
  
  
  /* Estilizar o botão de remoção ao passar o mouse */
  .js-deleteitem:hover {
      background-color: #c82333; /* Alterar cor de fundo ao passar o mouse */
  }
  
  .custom-file-label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 0px); /* ajuste conforme necessário */
    padding: 0.375rem 0.75rem; /* ajuste conforme necessário */
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .custom-file-label::after {
    content: 'Escolher';
  }
  
  .custom-file-label:hover{
    cursor: pointer;
  }
  
  .btnPerm{
    border-radius: 100%;
  }