table {
  width: 100%;
  border-collapse: collapse; /* Merges cell borders into a single clean line */
}

th, td {
  border: 1px solid #dddddd; /* Adds a light gray border around cells */
  padding: 8px;              /* Creates comfortable spacing inside cells */
  text-align: left;          /* Aligns text to the left side */
}

th {
  background-color: #f2f2f2; /* Gives the top header a distinct background */
}