/* 冻结表头 */
#scheduleClassesPage .footable thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #fff; /* 设置表头背景色，根据实际需要调整 */
    z-index: 2; /* 确保表头在最顶层 */
}

/* 冻结首列 */
#scheduleClassesPage .footable tbody td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #fff; /* 设置首列背景色，根据实际需要调整 */
    z-index: 1; /* 确保首列在最顶层 */
}

/* 横向分割线样式 */
#scheduleClassesPage .footable thead th::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc; /* 设置横向分割线颜色，根据实际需要调整 */
}

/* 纵向分割线样式，仅在第一列的员工名称右侧添加 */
#scheduleClassesPage .footable tbody td:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc; /* 设置纵向分割线颜色，根据实际需要调整 */
}

#editClassesPageModel .el-input--prefix .el-input__inner{
    width: 214px;
}