﻿#spreadsheet, #personnelPlanSpreadsheet {
    font-size: 16px;
}
    /* 指定列の色変更
    #spreadsheet tbody.draggable td[data-X="5"],
    #spreadsheet tbody.draggable td[data-X="6"],
    #spreadsheet tbody.draggable td[data-X="8"],
    #spreadsheet tbody.draggable td[data-X="9"],
    #spreadsheet tbody.draggable td[data-X="10"] {
        color: #000;
        background-color: #ff9;
    }*/

    /*スプレッドシートデザイン*/
:root {
    --jexcel_header_color: #fff;
    --jexcel_header_color_highlighted: #FFF;
    --jexcel_header_background: #fa8c31;
    --jexcel_header_background_highlighted: #fa8c31;
    /*セル*/
    --jexcel_content_color: #000;
    --jexcel_content_color_highlighted: #000;
    --jexcel_content_background: #fff;
    --jexcel_content_background_highlighted: #e6e6e3; /*選択時*/
    /*線*/
    --jexcel_border_color: #ccc;
    --jexcel_border_color_highlighted: #000;
    --jexcel_cursor: #eee;
    --active_color: #007aff;
    /*メニュー*/
    --jexcel_menu_background: #fff;
    --jexcel_menu_background_highlighted: #ebebeb;
    --jexcel_menu_color: #000;
    --jexcel_menu_color_highlighted: #000;
    --jexcel_menu_box_shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
}

/*一番左側の色*/
.jexcel > tbody > tr > td:first-child{
    background-color: #FFF;
    color: #000;
}
.jexcel > tbody > tr.selected > td:first-child {
    background-color: #FFF;
    color: #000;
}

/* テーブルの左側にある行番号を消す */
#personnelPlanSpreadsheet .jexcel colgroup col:first-child {
    width: 0 !important;
}

.table-responsive {
    height: 100%;
}

/*フッター*/
#spreadsheet tfoot td{
    background-color:#FFF;
}

/*カレンダー*/
.calendarWrapper {
    /*   margin: 0 auto; */
    color: #000;
    font-size: 26px;
}
#calendarHeader {
    text-align: center;
    font-size: 24px;
    width: 100%;
}

#calendar {
    text-align: center;
    width: 100%;
}

#calendar table {
    outline: 2px solid #ddd;
    border-collapse: collapse;
    width: 100%;
}

#calendar th {
    color: #000;
}

    #calendar th, #calendar td {
        vertical-align: top;
        outline: 1px solid #ddd;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: center;
    }
    /*日曜日*/
        #calendar td:last-child {
            color: red;
        }
    /*土曜日*/
        #calendar td:nth-child(6) {
            color: blue;
        }
    /*前後月の日付*/
    #calendar td.disabled {
        color: #ccc;
    }
        #calendar td:hover {
            background-color: #d0e5e4;
        }

    #calendar table {
        table-layout: fixed;
        height:100%;
    }
/*ボタン*/
#next-prev-button {
    position: relative;
}
    #next-prev-button button {
        cursor: pointer;
        background: #eeb36b;
        color: #fff;
        border: 1px solid #eeb36b;
        border-radius: 4px;
        font-size: 1rem;
        padding: 0.5rem 2rem;
        margin: 1rem 0;
    }

        #next-prev-button button:hover {
            background-color: #d4f0fd;
        }
#prev {
    float: left;
}

#next {
    float: right;
}

/*アコーディオン*/
.accordion-button:hover {
    background: #d4f0fd;
}


.tblBtn {
    border: none;
    font-size: 22px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    background: #fd9535; /*背景色*/
    border-bottom: solid 2px #d27d00; /*少し濃い目の色に*/
    border-radius: 4px; /*角の丸み*/
    font-weight: bold;
}
.tblBtn:hover {
    color: #FFF;
    background: #c15019; /*背景色*/
    border-bottom: solid 2px #a0640b; /*少し濃い目の色に*/
}
/*区切り線*/
hr {
    margin: 20px 0;
    border: none;
}

#personnelPlanTable .table-responsive{
    height:600px;
}

/*ポップアップ*/
.SelectPopup {
    text-align: center;
    display: none; /*最初は非表示に*/
    z-index: 999; /* 重なり順指定 */
    height: 100vh; /*【height:100vh】【width:100%】の2つで画面全体を指定*/
    width: 100%;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
}

.SelectContent {
    background: #fff;
    border-radius: 5px; /*角の丸み*/
    padding: 5px;
    width: 15%;
}
.ConfirmationShow {
    display: flex;
    justify-content: center;
    align-items: center;
}
#selectTitle {
    font-size: 26px;
    font-weight: bold;
    background: #ff7733;
    color: white;
    width: 100%;
}

#selectMessage {
    padding: 10px;
    font-size: 24px;
}
