/* ===== Lecture Table Styling ===== */

.lecture-table-wrapper {
    margin-top: 20px;
    overflow-x: auto;
}

.lecture-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Header */
.lecture-table thead {
    background: linear-gradient(135deg, #b4b46a, #d1d192);
    color: #2d2d2d;
}

.lecture-table th {
    padding: 14px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Rows */
.lecture-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

/* Alternating row color */
.lecture-table tbody tr:nth-child(even) {
    background-color: #fafaf0;
}

/* Hover effect */
.lecture-table tbody tr:hover {
    background-color: #f0f0d8;
    transform: scale(1.01);
    transition: 0.2s ease;
}

/* Lecture button */
.lecture-btn {
    display: inline-block;
    padding: 6px 14px;
    background-color: #5c5ca8;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    transition: 0.3s ease;
}

.lecture-btn:hover {
    background-color: #3f3f8f;
}

/* Responsive */
@media (max-width: 768px) {
    .lecture-table th,
    .lecture-table td {
        padding: 8px;
        font-size: 0.9em;
    }
}
