body {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 600px;
    margin: auto;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.highlight {
    font-weight: bold;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    text-align: center;
}

.credits-section {
    margin-top: 20px;
    text-align: left;
}

.thank-you {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

#credits {
    font-size: 14px;
    color: #555;
}

/* spacing */

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    background-color: #eee;
  }
  
  thead th:nth-child(1) {
    width: 60%;
  }
  
  thead th:nth-child(2) {
    width: 20%;
  }
  
  thead th:nth-child(3) {
    width: 20%;
  }
  
  th,
  td {
    padding: 20px;
    text-align: center; 
  }
  /* zebra striping */
  
  tbody tr:nth-child(odd) {
    background-color: #ddd;
  }
  
  tbody tr:nth-child(even) {
    background-color: #eee;
  }