/* Tabel for edit-sessions */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 0 auto;
  }
  
  table {
    width: max-content;
    border-collapse: collapse;
  }
  
  th,
  td {
    padding: 5px;
    white-space: nowrap;
  }
  
  th {
    background-color: #333;
    color: #fff;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  tr:hover {
    background-color: #ddd;
  }
  
  a {
    color: #333;
    text-decoration: none;
  }
  
  a:hover {
    color: #666;
    text-decoration: underline;
  }
