/*共通レイアウト*/

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    margin-bottom: 100px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    margin-top: 100px !important;
}

.container {
    width: 95%;
    margin: 0 auto;
    border-radius: 5px;
}

/*table周り*/

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background: #005bab;
    color: #fff;
    text-align: center;
}

td {
    text-align: center;
}

thead tr {width:100%;}

thead tr .first {width:5%;}

thead tr .second {width:5%;}

thead tr .third {width:15%;}

thead tr .fourth {width:35%;}

thead tr .fifth {width:20%;}

thead tr .sixth {width:20%;}

thead tr .fiveper {width:5%;}
thead tr .tenper {width:10%;}
thead tr .fifteenper {width:15%;}
thead tr .twentyper {width:20%;}
thead tr .twentyfiveper {width:25%;}
thead tr .thertyper {width:30%;}
thead tr .thertyfiveper {width:35%;}


.edit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    border-radius: 15px;
    width: 100%;
}

.edit-btn:hover {
    background: #3e8e41;
}


/*新規登録ボタン*/
.new_create_parent {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
}

.new_create_child {
    background: #4CAF50;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 200px;
}

.new_create_parent:hover,
.new_create_child:hover {
    background-color: #3e8e41;
}

/*ページャー*/

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination button:hover {
    background: #3e8e41;
    ;
}

.human_q {margin-top:5%;}
