/**
 * 开班计划页面特定样式
 */

/* 页面头部背景 - 蓝色渐变 */
.page-header {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

/* 开班计划表格样式 */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.schedule-table th,
.schedule-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: #1a237e;
    color: white;
    font-weight: 600;
}

.schedule-table tr:hover {
    background: #f8f9fa;
}

.schedule-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1a237e;
}

.schedule-table .btn {
    padding: 8px 20px;
    font-size: 14px;
}

.table-responsive {
    overflow-x: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .schedule-table {
        font-size: 14px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 12px 8px;
    }
}
