.custom-title {
  color: #7e8486;
}

  .custom-table {
    width: 100%;
    border-collapse: collapse;
  }

  .custom-table th,
  .custom-table td {
    padding: 5px;
  }

  .custom-table tr {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
  }

  /* Nessun bordo sopra la prima riga */
  .custom-table tr:first-child {
    border-top: none;
  }

  /* Nessun bordo sotto l'ultima riga */
  .custom-table tr:last-child {
    border-bottom: none;
  }

  /* Nessun bordo tra colonne */
  .custom-table th,
  .custom-table td {
    border-left: none;
    border-right: none;
  }