/*-------------------------
  全体
-------------------------*/
body {
    font-family: "Century Gothic", "メイリオ", sans-serif;
    color: #706868;
    letter-spacing: 0.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
}

.main {
    margin: 3%;
    background-color: #F5EEE6;
    height: 90%;
    width: 90%;
    border-radius: 10px;
    padding: 5% 10%;
}

input, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    letter-spacing: inherit;
    border: none;
    width: 100%;
  }

  input[type="date"] {
    width: 97%;
    box-sizing: border-box;
  }


/*-------------------------
  テーブル
-------------------------*/
table {
    margin: 0 auto;
    width: 100%;
    table-layout: fixed;
    word-break: break-word;
}

thead {
    background-color: #F3D7CA;
}

tbody {
    background-color: white;
}

th {
    padding: 5px;
    font-size: 10px;
}

td {
    height: 30px;
    padding: 9px;
}

td input {
    width: 99%;
    height: 100%;
    max-width: 99%;
    box-sizing: border-box;
}


/*-------------------------
  ホームに戻る
-------------------------*/
.backToHome {
    display: flex;
}

.backToHome p {
    margin-right: 5px;
}

.backToHome a {
    margin: auto 0;
}

/*-------------------------
  タスク入力フォーム
-------------------------*/
.addTask {
    margin-bottom: 60px;
}

#input {
    border: none;
}

#completedBy {
    border: none;
    padding-left: 0.5px;
}

.addButton_wrapper {
    text-align: right;
}

#addButton {
    background-color: #E6A4B4;
    color: white;
    font-size: 30px;
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
}

#addButton:hover {
    opacity: 70%;
}

#addButton:active {
    transform: scale(0.90);
}

/*-------------------------
  ToDo
-------------------------*/
.todoList {
    margin-bottom: 60px;
}

.status-select {
    height: 30px;
}

/*-------------------------
  Completed
-------------------------*/
.completed {
    margin-bottom: 60px;
}
