table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border-left: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    padding: 8px;
    text-align: center;
    
}



.time-col {
    width: 10%;
}

.eventA-col, .eventB-col, .eventC-col { /* Add styles for each column */
    width: 25%; /* Set equal width for all columns */
}



/* Alternating row colors */
tr:nth-child(even) {
    background-color: var(--maintheme-lightercolor);
}
tr:nth-child(odd) {
    background-color: #ffffff;
}

tr.firstrow {
    background-color: var(--maintheme-color);
    color:white;
}
