/* nav bar */
.nav-link {
    font-size: 1.2rem;
}
.menu-toggle-area {
    text-align: right;
}
.menu-toggle-btn {
    width:10%; 
    height:auto; 
    padding-right:1rem;
    cursor: pointer;
}
/* 테이블이 있는 곳에서 쓰임 */
td {
    border:1px solid #cccccc;
    width:130px;
    height:40px;
    text-align:center;
    vertical-align:middle;
}

thead.custom-thead td {
    background-color: #f5f5f5;
    font-weight:bold;
    color:#b0b0b0;
}

.round-row {
    text-align: center;
    background-color: #f5f5f5;
    font-weight:bold;
    color:#000;
    width: 200px;
}

.round-row-flex-center {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.toggle-switch {
    cursor: pointer;
}

/* 오른쪽 버튼 구현 및 cell focus */

.cell:hover {
    /*border: 3px solid blue;*/
    cursor: pointer;
}

.contextmenu {
    display: none;
    position: absolute;
    width: 200px;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 5px;
    list-style: none;
    box-shadow:
            0 15px 35px rgba(50,50,90,0.1),
            0 5px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    z-index: 999999;
}

.contextmenu li {
    border-left: 3px solid transparent;
    transition: ease .2s;
}

.contextmenu li a {
    display: block;
    padding: 10px;
    color: #B0BEC5;
    text-decoration: none;
    transition: ease .2s;
}

.contextmenu li:hover {
    background: #CE93D8;
    border-left: 3px solid #9C27B0;
}

.contextmenu li:hover a {
    color: #FFFFFF;
}

.contextmenu-operator {
    cursor: pointer;
}

.selected-change {
    border: 3px solid red;
}
