.faculty-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    table-layout: fixed;
}

.faculty-schedule-table th, .faculty-schedule-table td {
    padding: 0.5rem;
    text-align: left;
	border: none;
}

.faculty-schedule-table th {
    background-color: #f2f2f2;
    font-weight: bold;
	border: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.faculty-schedule-table th:nth-child(1),
.faculty-schedule-table td:nth-child(1) {
    width: 10%; /* CRN */
}

.faculty-schedule-table th:nth-child(2),
.faculty-schedule-table td:nth-child(2) {
    width: 10%; /* Course */
}

.faculty-schedule-table th:nth-child(3),
.faculty-schedule-table td:nth-child(3) {
    width: 10%; /* Section */
}

.faculty-schedule-table th:nth-child(4),
.faculty-schedule-table td:nth-child(4) {
    width: 70%; /* Title */
}


.faculty-schedule-table td {
    background-color: #fff;
}

.faculty-schedule-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.faculty-schedule-table tr:hover {
    background-color: #f1f1f1;
}

.faculty-schedule-table a {
    text-decoration: underline;
    color: #A61E2F;
}

.faculty-schedule-table a:hover {
    text-decoration: none;
}
