table {
    width: 100%;
    border-collapse: collapse; /* Removes double borders between cells */
    table-layout: fixed; /* Ensures cells use the same width */
}

th, td {
    width: 20%; /* Ensures three equal columns */
    height: 200px; /* Fixed height for cells */
    border: 2px solid #000; /* Adds a border to each cell */
    text-align: center; /* Centers text horizontally */
    vertical-align: middle; /* Centers text vertically */
    padding: 10px; /* Adds padding inside cells */
    box-sizing: border-box; /* Includes border in cell's dimensions */
}
