.page-number {
    display: inline-block;
    color: #666;
    font-size: 14px;
}

.page-number button {
    margin-left: -1px;
    padding: 0px 14px;
    line-height: 32px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
    outline: none;
    background: none;
    color: #666;
    vertical-align: middle;
}

.page-number button.active, .page-number button.active:hover{
    background: #2d98e6;
    color: #fff;
    border-color: #2d98e6;
}

.page-number button:hover {
    background-color: #eee;
}

.page-number button.button-disabled {
    cursor: not-allowed;
    color: #ccc;
}

.page-number .page-after,
.page-before {
    position: relative;
    padding: 0px;
    width: 40px;
}
.createTaskDiv{
    display: none;
}
.floating-layer {
    display: none;
    position: fixed;
    width: 210px;
    top: 66px;
    right: 188px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header p {
    margin: 0;
    font-size: 14px;
}

.header a {
    color: #007bff;
    text-decoration: none;
}

.task-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.task {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* 最后一个任务项去掉底部边框 */
.task:last-child {
    border-bottom: none;
}

.task-name {
    display: inline-block;
    width: 100px;
}

.task-status {
    float: right;
    font-size: 14px;
    border-radius: 3px;
    padding: 2px 5px;
}

.green {
    color: green;
}

.gray {
    color: gray;
}

.red {
    color: red;
}

.task-time {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #777;
}