/* Define the default font size */
body {
    font-size: 16px;
}

h1, h2 {
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 10px; /* Adjust margin for less whitespace */
}

th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Center the text in the Sessions and Equipment columns */
th:nth-child(2), td:nth-child(2),
th:nth-child(3), td:nth-child(3) {
    text-align: center;
}

/* Set fixed width for Sessions and Equipment columns */
th:nth-child(2), td:nth-child(2) {
    width: 75px;
}

th:nth-child(3), td:nth-child(3) {
    width: 80px;
}

.attendee-info {
    margin-top: 10px; /* Adjust margin for less whitespace */
    margin-bottom: 40px;
}

.attendee-info span {
    display: inline-block;
    margin-right: 20px;
}
