.custom-checkbox {
  width: 1em;           /* leggermente più grande */
  height: 1em;
  border: 2px solid #495057;  /* bordo più scuro visibile */
  border-radius: 4px;     /* angoli più visibili */
  transition: all 0.2s;
}

.custom-checkbox:hover {
    border-color: #0d6efd;  /* bordo evidenziato al passaggio del mouse */
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  }
  
  .custom-checkbox:checked {
    background-color: #0d6efd;
    border-color: #0a58ca;
  }

  .multiline-cell {
    white-space: normal; /* Permette il wrapping del testo */
    word-wrap: break-word; /* Assicura che le parole vengano spezzate se necessario */
  }

  .no-border {
      border: none;
      outline: none;
      box-shadow: none;
  }

  .no-border:focus {
      border: none;
      outline: none;
      box-shadow: none;
  }
  
  a {
      text-decoration: none;
  }

