.tasksWrapper {
    background-color: #ebeaea;
    padding: 10px;
}


.taskWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin: 25px 20px;
    /* border: 1px solid rgb(70, 70, 70); */
    border-radius: 10px;
    box-shadow: 0px 10px 12px -5px #777777;
    background-color: white;
    cursor: pointer;
}

.taskWrapper:hover {
    transform: translateY(-0.3em);
    transition: 0.5s;
}

tr.due-today {
    background: #ffe5e5;
}

/* status に合わせて td のクラスを付けたい場合、テンプレートでクラス追加 */

.status-not_started {
    color: #555;
}

/* 未実行 */

.status-in_progress {
    color: #0c4a6e;
}

/* 進行中 */

.status-completed {
    color: #16a34a;
}

/* 完了 */

.loginAndLogout,
.withdrawal {
    padding: 20px 30px 10px 30px;
}

.loginAndLogout a {
    padding: 10px 30px 20px 30px;
}

.selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selection a {
    margin-left: 15px;
}

.status-completed, .status-not_started, .status-in_progress {
    width: 48px;
}

.date, .status-completed, .status-not_started, .status-in_progress {
    margin-right: 15px;
}

/* タスク */
.searchWrapper {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    align-items: center;
}

.searchInput {
    height: 20px;
    outline:  none;
    border: 1.5px solid rgb(60, 60, 60);
    border-radius: 5px;
    padding: 2px 4px;
    margin-right: 10px;
    width: 160px;
}

.addButton {
    font-size: 40px;
    font-weight: bold;
}