/* ========================================================= */
/* 7. Lesrooster & Tabellen */
/* ========================================================= */

.schedule-container {
    max-width: 1000px;
    margin: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid var(--brand-orange);
    padding: 12px;
    text-align: left;
    color: var(--brand-orange);
}

.schedule-table th {
    background-color: #404040;
    font-weight: bold;
}

.schedule-table tr:nth-child(odd) {
    background-color: #353535;
}

.schedule-table tr:hover {
    background-color: #4A4A4A;
}

.mobile-schedule {
    display: none;
}

.schedule-item {
    background-color: #222;
    border: 1px solid var(--brand-orange);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.schedule-item h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.schedule-item p {
    color: var(--color-text-light);
    margin: 5px 0;
}

.schedule-item p strong {
    color: var(--brand-orange);
}

.course-progression-table {
    margin: 20px 0;
}

.course-progression-table h3 {
    text-align: center;
}

.course-progression-table th {
    text-decoration: underline;
    padding-left: 20px;
    padding-right: 20px;
}

.course-progression-table td {
    padding-left: 20px;
    padding-right: 20px;
}

.course-progression-table table {
    border-spacing: 15px;
}

.compact-course-list {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.compact-course-list p {
    margin: 0;
    display: flex;
}

.compact-course-list b {
    flex-shrink: 0;
    min-width: 120px;
}