﻿/* ------------------------- edms Side-Bar ----------------------------- */
.sub-side-bar {
    background-color: #ffffff;
    width: 190px;
    height: 100%;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px 0 0 10px;
    position: relative;
    z-index: 10000;
}

.sub-side-bar ul ul {
    /*display: none;
        position: absolute;
        background-color: #ffffff;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 10px;
        top: 0;*/ /*중메뉴와 동일 선상*/
    /*left: 100%;
        z-index: 10;
        width: 190px;*/ /*상위 메뉴와 동일한 width */

    display: none;
    position: absolute !important; /* 반드시 absolute 적용 */
    background-color: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    top: -5px !important; /* 부모 메뉴와 동일한 높이에 배치 */
    left: 100% !important; /* 부모 메뉴의 오른쪽에 배치 */
    z-index: 1000; /* z-index 높여서 다른 요소보다 위에 표시 */
    width: 190px; /* 부모 메뉴와 동일한 너비 */
}

.sub-side-bar ul > li > a {
    display: block;
    padding: 8px 48px;
    width: 180px; /*상위 메뉴와 동일한 width */
    height: 40px; /*대메뉴 hover 박스 height*/
    border-radius: 7px;
    background-color: #5c5fc0cc;
    color: white;
    margin-top: 5px;
    margin-left: 5px;
    box-sizing: border-box; /*패딩 포함 크기 계산*/
}

.sub-side-bar ul ul > li > a {
    display: block;
    padding: 4px 25px;
    width: 180px; /*상위 메뉴와 동일한 width*/
    height: 31px; /*중메뉴 및 소메뉴 hover 박스 height */
    border-radius: 7px;
    background-color: #ffffff;
    color: #4c4c4c;
    margin-top: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    text-align: left;
}

.sub-side-bar ul > li:hover > ul,
.sub-side-bar ul > li > ul > li:hover > ul {
    display: block;
}

.sub-side-bar ul > li:hover > a {
    background-color: #5c5fc0;
    color: white;
    height: 40px; /*대메뉴 hover height 유지*/
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-side-bar ul ul > li:hover > a {
    background-color: #5c5fc0;
    color: white;
    height: 31px; /*중메뉴 hover height */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-side-bar ul li {
    position: relative; /* 부모 메뉴를 기준으로 소메뉴를 배치하기 위해 relative 설정 */
    margin: 0;
    padding: 0;
}

.sub-side-bar ul ul li a {
    text-align: left;
}

.side-list {
    padding: 10px 20px;
    color: #4c4c4c;
    transition: color 0.2s, font-weight 0.2s;
}

.side-list:hover {
    cursor: pointer;
    color: #5c5fc0;
    font-weight: bold;
}
/* ------------------------- edms Side-Bar ----------------------------- */
.edms-submit-area {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /*width:calc(100% - 190px);*/
}
.edms-submit {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.edms-submit-table-area {
    height: 100%;
    width: 100%;
    /*width: 1430px;*/
    background-color: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 10px 10px 0px;
}

.edms-submit-table-top {
    display: flex;
    border: 1px solid #5c5fc0;
    border-radius: 10px 10px 0px 0px;
    background-color: #5c5fc0;
    color: white;
    width: 100%;
    /*width: 1430px;*/
    height: 50px;
    justify-content: left;
    align-items: center;
    font-size: var(--xlg-font);
    font-weight: var(--normal-font);
    padding: 0 0 0 20px;
}

.edms-submit-table-bottom {
    border-radius: 0px 0px 10px 10px;
    background-color: #ffffff;
    width: 100%;
    /*width: 1430px;*/
    height: 100%;
    max-height: 100%;
    box-shadow: 0px 3px 6px #00000029;
}

.edms-submit-table th {
    color: #4c4c4c;
    font-size: var(--sm-font);
    font-weight: var(--normal-font);
}

.edms-submit-table tr {
    height: 50px;
}

.edms-submit-table tr:hover {
    background-color: #ffffff;
}

.edms-submit-table td {
    color: #4c4c4c;
    font-size: var(--md-font);
    font-weight: var(--normal-font);
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
}

.edms-submit-icon-color {
    color: #888888;
    cursor: pointer;
}

.number-area {
    display: flex;
    color: #888888;
    gap: 38px;
    cursor: pointer;
}

.table-scroll {
    display: flex;
    flex: 1;
    min-height: 0;
}