
.nav-name {
    margin-right: 70px;
}


/**
* NAV
*/
.nav-color {
    background-color: #2f323b !important;
}

.icon-menu {
    width: 250px;
}

.logo {
    letter-spacing: 5px;
    color: #2f323b;
    font-size: 30px;
}

/** 
* FIM NAV
*/

/* Estiliza os nós da árvore */
#categoryTree .jstree-anchor {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Ícones personalizados */
#categoryTree .jstree-icon {
  color: #007bff; /* Azul Bootstrap */
}

/* Mudar a cor do nó selecionado */
#categoryTree .jstree-clicked {
  border-radius: 5px;
}

/* Remover fundo feio na seleção */
#categoryTree .jstree-default .jstree-clicked {
  background: none;
}

/* Ajustar o espaçamento da árvore */
#categoryTree {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background: #f8f9fa;
}

/* Nível 1 - Categoria principal (maior destaque) */
#categoryTree .jstree-node > .jstree-anchor {
  font-size: 20px;
  font-weight: bold;
}

/* Garante que cada item seja um flex container */
#categoryTree .jstree-anchor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
}

/* O nome da categoria fica normal */
#categoryTree .category-name {
  flex-grow: 1;
  font-weight: bold;
}

/* O machine_name vai para a direita */
#categoryTree .machine-name {
  flex-shrink: 0;
  color: #888;
  font-size: 14px;
  margin-left: auto; /* Empurra para a direita */
}

.btn-delete-img {
  display: none;
}


/* Ícone quando a categoria está fechada */
#categoryTree .jstree-closed > .jstree-ocl::before {
  content: "\f054"; /* Seta para direita */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: black;
  display: inline-block;
  font-size: 14px;
}

/* Ícone quando a categoria está aberta */
#categoryTree .jstree-open > .jstree-ocl::before {
  content: "\f078"; /* Seta para baixo */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: black;
  display: inline-block;
  font-size: 14px;
}

/* Remove a seta original */
#categoryTree .jstree-icon.jstree-ocl {
  background: none !important;
}
label.error{
    color: red;
    font-size: 12px;
    font-weight: normal;
}

div:where(.swal2-container) .swal2-input {
    height: 29px !important;
    padding: 0 .75em !important;
    margin: 5px 0 !important;
}
textarea.swal2-input {
    height: 100px !important;
    padding: 0 .75em !important;
    margin: 5px 0 !important;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
.snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 25px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 39%; /* Center the snackbar */
    bottom: 50%; /* 30px from the bottom */
    font-size: 26px;
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  .snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
 
  .select2-container {
    z-index: 9999999 !important;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit !important;
  }

  .swal-wide{
        width:100% !important;
    }

    #fullscreen-container.blue {
        background-color: #2f323b !important;
    }

  .swal2-large-popup {
      width: 600px !important;
      max-width: 80% !important;
  }

  .discount-row {
    cursor: pointer;
  }

  .badge-notification{
    display: none;
  }

  .open-packages {
    cursor: pointer;
  }
  .treated-packages {
    cursor: pointer;
  }
  .pending-packages {
    cursor: pointer;
  }
  .open-notifications {
    cursor: pointer;
  }
  .status-indicator {
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
  }
  .status-indicator.red {
      background-color: red;
  }
  .status-indicator.yellow {
      background-color: yellow;
  }
  .status-indicator.green {
      background-color: green;
  }
  .status-indicator.gray {
      background-color: gray;
  }
.swal2-popup {
  overflow: visible !important;
}

.select2-container--open {
  z-index: 100000 !important;
}

.swal2-confirm.btn.btn-success {
  margin-right: 10px;
}

.select2-container--open {
    z-index: 1050 !important;
}
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 50%; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 50%; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 50%; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 50%; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}