/* Style for frequency table */
table.frequency-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

table.frequency-table th, 
table.frequency-table td {
  border: 1px solid #ddd;
  padding: 8px; 
}

/* Make the first column 10% width */
table.frequency-table th:first-child,
table.frequency-table td:first-child {
  width: 15%;
}

table.frequency-table th {
  background-color: #f4f4f4;
  font-size: 1.2em; /* Increase header size */
  text-align: left;
}

/* Alternating row colors */
table.frequency-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table.frequency-table tr:nth-child(odd) {
  background-color: #ffffff;
}

table.frequency-table tr:hover {
  background-color: #e2e2e2;
}
