/* Container for the skill levels table */
#skillLevels {
  margin-top: 20px;
  padding: 10px;
  border-top: 1px solid #ccc;
  font-family: sans-serif;
}

/* Style the table itself */
#skillLevels table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

/* Header cells */
#skillLevels th {
  border-bottom: 2px solid #ccc;
  text-align: left;
  padding: 4px 8px;
  background-color: #f8f8f8;
  font-weight: bold;
}

/* Data cells */
#skillLevels td {
  padding: 4px 8px;
  border-bottom: 1px solid #eee;
}

/* Alternate row shading for readability */
#skillLevels tr:nth-child(even) td {
  background-color: #fafafa;
}
