/* font */
@font-face {
    font-family: 'NanumBarunGothic';
    src: url('/fonts/NanumBarunGothic.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'NanumBarunGothic';
    src: url('/fonts/NanumBarunGothicBold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'NanumBarunGothic';
    src: url('/fonts/NanumBarunGothicLight.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'NanumBarunGothic';
    src: url('/fonts/NanumBarunGothicUltraLight.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    src: url('/fonts/Pretendard-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    src: url('/fonts/Pretendard-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    src: url('/fonts/Pretendard-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    src: url('/fonts/Pretendard-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    src: url('/fonts/Pretendard-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    src: url('/fonts/Pretendard-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    src: url('/fonts/Pretendard-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    src: url('/fonts/Pretendard-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    src: url('/fonts/Pretendard-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 100 900;
    src: url('/fonts/PretendardVariable.ttf') format('truetype');
}


/* style.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Pretendard', sans-serif !important;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}
ul{
    list-style-type: none;
}

/* 바탕색이 반짝이는 애니메이션 설정 */
@keyframes flashBackground {
    0% {
        color: #235aa0; /* 기본 */
    }
    50% {
        color: #ffffff; /* 반짝일 때의 색상 */
    }
    100% {
        color: #235aa0; /* 다시 기본*/
    }
}

/* 페이지가 로드될 때 애니메이션 적용 */
.container-list {
    animation: flashBackground 0.2s ease-in-out 2; /* 1초 동안 두 번 깜박임 */
}


/* header 스타일 */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 55px;
}

header > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 14px;
}

header > div > div {
    display: flex;
    align-items: center;
    flex-direction: row;
}

header > div > div:nth-child(2) > div > .logout {
    font-size: 14px;
}

header > div > div:nth-child(2) > div > .logout:hover {
    color: #fd7e14;
}

header > div > div > div {
    display: flex;
    align-items: center;
}

header > div > div > div > div {
    display: flex;
    align-items: center;
}

header > div > div > div > div:nth-child(1) {

}

header .token-time-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 15px;
    font-size: 12px;
}

header .token-time-group .token-time-group-text {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    line-height: 14px;
    margin-right: 7px;
    min-width: 55px;
}

header .token-time-group .token-time-group-text .token-time-text {
    color: #6fafff;
}

header .token-time-group .token-time-group-text .token-time {
}

header .token-time-group .token-renewal-btn {
    height: 100%;
    width: 50px;
    color: white;
    font-size: 12px;
    margin-left: 5px;
    /* margin-right: 15px */
}
header .delete-approve-btn {
    height: 100%;
    width: 50px;
    color: white;
    font-size: 12px;
    margin-left: 5px;
    margin-right: 15px
}
/*
header .token-time-group .token-renewal-btn:hover {
    background-color: white;
    color: black;
}
*/
.header-logo {
    margin-left: 10px;
    cursor: pointer;
}

.header-logo .header-logo-img {
    height: 50px;
    opacity: 0.8;
}

.header-logo .header-logo-text {
    margin-left: 10px;
    height: 45px;
    filter: brightness(2) saturate(100%) invert(10) sepia(512%) saturate(500%) hue-rotate(145deg) brightness(85%) contrast(90%);
}

/* 페이지 content 스타일 */
.sub-page-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}

.content {
    overflow-y: scroll; /* 스크롤 활성화 */
}

input[type=date] {
    user-select: none;
}
.row{
    margin: 0px;
    padding: 0px;
}
/* Firefox에서 스크롤바 스타일 */
* {
    scrollbar-width: thin; /* 스크롤바 너비 설정 */
    scrollbar-color: #88b9f5 #f1f1f1; /* 스크롤바 색상과 배경 설정 */
}

/* 웹킷 기반 브라우저(Chrome, Safari)를 위한 스크롤바 스타일 */
*::-webkit-scrollbar {
    width: 8px; /* 스크롤바 너비 설정 */
}

*::-webkit-scrollbar-track {
    background: #f1f1f1; /* 스크롤바 배경 설정 */
}

*::-webkit-scrollbar-thumb {
    background-color: #88b9f5; /* 스크롤바 색상 설정 */
    border-radius: 10px; /* 스크롤바 모서리 설정 */
    border: 2px solid #f1f1f1; /* 스크롤바 테두리 설정 */
}

.content-title {
    margin-left: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

/* 페이지 container-fluid 스타일 */
.container-fluid {
    min-width: 1220px !important;
    position: relative;
    height: 100%;
}

.breadcrumb {
    justify-content: flex-end;
    font-size: 0.75em;
    color: #575757;
    display: flex;
    height: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.breadcrumb svg {
    width: 15px;
    height: 15px;
}

.breadcrumb > div {
    height: 20px;
}

.breadcrumb > div:nth-child(2) {
    line-height: 23px;
}

/* 메인 컨테이너 스타일 */
.main-container {
    margin: 20px 20px;
    flex: 1;
    align-content: flex-start;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.page-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-direction: column;
}

/* 메인메뉴 스타일 */
.main-menu {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding-left: 20px;
    box-shadow: 0 3px 12px -7px rgb(0 0 0 / 15%);
    border-top: 1px solid #e3e3e35e;
}

.main-menu > div {
    padding: 10px 30px;
    margin: 2px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    position: relative;
}

.main-menu > div.on {
    color: #235ba0;
    cursor: unset;
}

.main-menu > div:not(.on):hover > span {
    color: #ff7100;
}

.main-menu > div:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background-color: #ede6e6;
    position: absolute;
    bottom: 0;
    right: -12px;
    transform: translateY(-45%);
}

/* 서브메뉴 스타일 */
#sub-menu-placeholder {
    height: 100%;
}

.sub-page-main {
    min-height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: nowrap;
    padding: 5px 10px;
    margin-left: 20px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
    border-radius: 0px 0px 10px 10px;
    /* border-top: 2px solid #235ba0;*/
    justify-content: space-between;
}

.sub-page-main > div:not(.breadcrumb) {
    width: 100%;
    height: calc(100% - 40px);
    padding-left: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    width: 200px;
    /* height: calc(100vh - 35px); */
    height: calc(100% - 20px);
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
    border-radius: 10px;
    font-size: 0.9em;
}

.sub-menu > .sub-item-title svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    margin-right: 5px;
}

.sub-menu > .sub-item-title > div:nth-child(1) {
    padding-left: 5px;;
}

.sub-menu > div:first-child {
    padding: 7px 5px;
    margin: 0px;
    text-align: left;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    color: #ffffff;
    background-color: #235ba0;
    border-bottom: 2px solid #55d5b7;
    cursor: unset;
}

.sub-menu > div:not(:first-child) {
    padding: 20px 13px;
    margin: 0px;
    text-align: left;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.sub-menu > div.on {
    color: #a02323;
    cursor: unset;
}

.sub-menu > div.on > div {
    position: relative;
    margin-left: 10px;
}

.sub-menu > div.on > div:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('/images/arrow_right_menu.svg') no-repeat center center;
    background-size: 20px 20px;
    display: block;
}

.sub-menu > div:not(:first-child):not(.on):hover > span {
    color: #ff7100;
}

.sub-menu > div:not(:first-child):not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ede6e6;
    position: absolute;
    bottom: 0px;
    left: 0px;
    /*transform: translateY(-45%);*/
}

/* footer 스타일 */
footer {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    font-size: 0.8em;
    padding: 7px 12px 7px;
    color: #232121;
    border-top: 1px solid #bfbfbf;
    background-color: #e5e5e5;
}

/* body 스타일 */
body > .content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    position: relative;
    flex: 1;
    overflow: auto;
    padding-top: 15px;
}

/* modal 스타일 */
.modal > .modal-dialog > .modal-content > .modal-body {
    margin-bottom: 15px;
    color: #5d5d5d;
}

.modal input {
    border: 1px solid #b2b2b2;
    border-radius: 2px;
    padding: 10px;
    width: 100%;
    margin: 10px 0px;
}

/* 로딩 모달 스타일 */
.loading-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(7 23 33 / 57%); /* 반투명한 배경 */
    z-index: 9999; /* 다른 요소 위에 표시되도록 설정 */
}

/* 로딩 스피너 스타일 */
.loading-spinner {
    position: fixed; /* 화면 스크롤과 상관없이 항상 화면에 고정되도록 설정 */
    top: calc(50% - 25px); /* 상하 중앙 정렬 */
    left: calc(50% - 25px); /* 좌우 중앙 정렬 (50% - 스피너 너비의 절반) */
    transform: translateY(-50%); /* 상하 중앙 정렬 */
    border: 5px solid #f3f3f3; /* 회색 테두리 */
    border-top: 5px solid #3498db; /* 파란색 테두리 */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* 회전 애니메이션 */
}

.loading-spinner-absolute {
    position: absolute; /* 화면 스크롤과 상관없이 항상 화면에 고정되도록 설정 */
    top: calc(50% - 25px); /* 상하 중앙 정렬 */
    left: calc(50% - 25px); /* 좌우 중앙 정렬 (50% - 스피너 너비의 절반) */
    transform: translateY(-50%); /* 상하 중앙 정렬 */
    border: 5px solid #f3f3f3; /* 회색 테두리 */
    border-top: 5px solid #3498db; /* 파란색 테두리 */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* 회전 애니메이션 */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container-custom {
    width: unset !important;
    max-width: unset !important;
    padding: unset !important;
    margin: unset !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: unset !important;
    flex: 1 !important;
}

.login-custom-tooltip {
    position: absolute;
    background-color: #ffdddd;
    border: 1px solid #ff0000;
    border-radius: 5px;
    padding: 5px;
    z-index: 1000;
    font-size: 12px;
    color: #ff0000;
    white-space: nowrap;
    display: none;
}

/* 스위치 컨테이너 */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* 숨겨진 체크박스 */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* 스위치 슬라이더 */
.switch-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

/* 스위치 슬라이더 내부의 원 */
.switch-label:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* 체크박스가 체크된 경우 */
.switch input:checked + .switch-label {
    background-color: #2196F3;
}

/* 체크박스가 체크된 경우, 슬라이더 내부의 원 위치 변경 */
.switch input:checked + .switch-label:before {
    transform: translateX(26px);
}

/* DownLoad Modal 스타일 */
.download-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.download-modal .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-modal .close-btn {
    border: none;
    background: none;
    font-size: 2.5em;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.download-modal .progress {
    position: relative;
    height: 15px;
    display: block;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 7px;
    margin: 0.5rem 0 1rem 0;
    overflow: hidden;
}

.download-modal .modal-message {
    display: none;
    text-align: center;
}

.download-modal .indeterminate {
    background-color: #3f51b5;
    position: absolute;
    width: auto;
    top: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #3f51b5 10%, rgba(63, 81, 181, 0) 10%);
    background-repeat: repeat-x;
    background-size: 150% 150%;
}

/* pagination 통합 */
.pagination {
    margin-top: 30px;
    width: 100%;
}

.pagination > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.pagination > ul > li {
    list-style-type: none;
    margin: 0px 5px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination > ul > li.active {
    font-size: 1.1em;
    font-weight: bold;
    color: #2383f0;
}

.pagination .arrow-left, .arrow-right {
    display: inline-block;
    width: 20px; /* 필요에 따라 크기 조정 */
    height: 20px; /* 필요에 따라 크기 조정 */
    background-size: contain; /* 이미지 크기에 맞게 조정 */
    background-repeat: no-repeat;
}

.pagination .arrow-left {
    background-image: url('/images/arrow_left.png');
}

.pagination .arrow-right {
    background-image: url('/images/arrow_right.png');
}

.content-title .add-btn {
    background: none;
    border: none;
    padding: 0px;
    margin: 0px;
}

.content-title > div:last-child:hover {
    fill: #ff7100;
}

.content-title > div:last-child {
    margin-left: 5px;
    position: absolute;
    right: 20px;
    cursor: pointer;
    fill: #43647a;
}

.main-container .search-form {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
}
.main-container .search-form .btn.btn-info{
    height: 100%;
    min-width: 70px;
    margin-left: 10px;
}
.search-container-div:not(:first-child){
    padding-top: 5px;
}
.search-container-div{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.search-container-div > div{
    display: flex;
    align-items: center;
    height: 100%;
}
.search-container-div > div:not(:last-child){
    margin-right: 10px;
}
.search-container-div > div > div {
    height: 45px;
    /* display: flex; */
    /* align-items: center; */
    /* background: #235ba0; */
    color: white;
}
.search-container-div > div > div > span {
    height: 100%;
    display: flex;
    align-items: center;
    background: #235ba0;
    padding: 10px;
    border-radius: 2px 0px 0px 2px;
}
.search-container-div > div > div > input {
    padding: 0px 15px;
    border-radius: 0px 2px 2px 0px;
    border: 1px solid #b2b2b2;
    height: 45px !important;
    border-left: 0px;
}
.search-form-bottom-btn{
    width: 100%;
    height: 40PX;
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    margin-bottom: -10px;
}
.search-form-bottom-btn button{
    margin-left: 10px;
}
.search-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.search-container select {
    height: 100% !important;
    margin: unset !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container select.search {
    border-radius: 0px 2px 2px 0px;
    border-left: 0px;
}

.search-container input, .search-container button {
    height: 100% !important;
}

.search-container > div:nth-child(1) {
}

.search-container > div:nth-child(2) {
}

.search-container > div:nth-child(2) > input {
    padding: 0px 15px;
    border-radius: 5px;
    border: 1px solid #b2b2b2;
}

.search-container > div:nth-child(3) {
}

select {
    border: 1px solid #b2b2b2;
    border-radius: 2px;
    padding: 10px;
    width: auto;
    margin: 10px 0px;
    color: #494747;
}

/* Custom Select Box Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.custom-select-wrapper.addr{
    border: 1px solid #dddddd;
    flex: 1;
}
.custom-select-wrapper .custom-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0px 15px;
    border-radius: 0px 2px 2px 0px;
    border: 1px solid #b2b2b2;
    height: 45px !important;
    border-left: 0px;
}

.custom-select-wrapper.in-modal .custom-select {
    padding: unset !important;
    border-radius: unset !important;
    border: unset !important;
    height: unset !important;
}

.custom-select-wrapper .custom-select div:first-child {
    flex: 1;
}

.custom-select-wrapper .custom-select div:last-child {

}

.custom-select-wrapper .custom-select .custom-select-text {
    width: 100%;
    outline: none;
    cursor: pointer;
    border: none;
}

.custom-select-wrapper .custom-select span:first-child {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
}

.custom-select-wrapper .custom-select span:last-child {
    height: 100%;
}

.custom-select-wrapper .custom-icons {
    width: 35px;
    height: 35px;
}

.custom-select-wrapper .custom-content {
    display: none;
    position: absolute;
    width: auto;
    top: 55px;
    left: 0;
    background-color: #235ba0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 70%);
    z-index: 100;
}

.custom-select-wrapper.in-modal .custom-content {
    top: 35px;
}

.custom-select-wrapper.custom-active .custom-content {
    display: block;
}

.custom-select-wrapper .custom-search-box {
    position: relative;
    padding: 15px;
}

.custom-select-wrapper .custom-search-box input.filter {
    width: 100% !important;
    font-size: 16px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    text-align: left !important;
    padding: 10px !important;
    height: unset !important;
}

.custom-select-wrapper .custom-options {
    max-height: 200px;
    overflow-y: auto;
    padding: 0px 10px;
    width: max-content;
    scrollbar-width: none;
    width: 100%;
}

.custom-select-wrapper .custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-select-wrapper .custom-options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.custom-select-wrapper .custom-options li {
    padding: 15px 10px;
    cursor: pointer;
    list-style: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.custom-select-wrapper .custom-options li:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.custom-select-wrapper .custom-options li:hover:not(.none-list) {
    background-color: #052857;
}

.custom-select-wrapper .custom-options li[data-value] {
    padding-left: 10px;
    color: white;
}

.custom-select-wrapper .custom-options li.no-data {
    color: #888;
    text-align: center;
}

/* 로딩 애니메이션 */
.custom-select-wrapper .custom-options.loading {
    position: relative;
    min-height: 50px;
}

.custom-select-wrapper .custom-options.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-radius: 50%;
    border: 4px solid #052857;
    border-top-color: rgb(255 255 255);
    animation: spin 1s linear infinite;
}

.custom-select-wrapper .custom-content .input-container {
    position: relative;
    display: inline-block;
}

.custom-select-wrapper .custom-content .filter {
    padding-right: 30px;
    box-sizing: border-box;
}

.custom-select-wrapper .custom-content .input-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.custom-select-wrapper .none-list{
    cursor: unset !important;
}

.list-img-btn {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.list-img-btn:hover {
    filter: sepia(1) saturate(5) hue-rotate(163deg) brightness(0.8);
}

.datePicker {
    cursor: pointer;
}

.date-picker-display {
    padding: 0px 15px;
    border-radius: 0px 2px 2px 0px;
    border: 1px solid #b2b2b2;
    height: 45px !important;
    border-left: 0px;
    color: black;
    display: flex;
    align-items: center;
    min-width: 8em; /* 기본 크기를 input의 size=6과 유사하게 설정 */
    font-size: 1em; /* 일반적인 텍스트 크기 설정 */
    position: relative;
}

.date-picker-display .placeholder-text {
    color: #6f6f6f;
    display: block;
    position: absolute;
    left: 15px;
    pointer-events: none;
    white-space: nowrap;
}

.date-picker-display .start-date,
.date-picker-display .end-date,
.date-picker-display .reset-text {
    display: none;
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

.reset-text {
    width: 15px;
    height: 13px;
    margin-left: 8px;
    margin-right: -5px;
    display: none;
}

.date-picker-display .date-separator {
    color: #a3a3a3;
    font-weight: bold;
    display: none; /* 기본적으로 숨김 */
    padding: 10px;
}


/* 전체 백그라운드 색상 및 텍스트 색상 */
.daterangepicker {
    background-color: #235ba0;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    border: 0px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 70%);
}

/* 달력의 각 날짜 셀 스타일 */
.daterangepicker .calendar-table .available {
    background-color: #235ba0;
    color: #ffffff;
}

/* 현재 선택된 날짜 범위 스타일 */
.daterangepicker .calendar-table .in-range,
.daterangepicker .calendar-table .active,
.daterangepicker .calendar-table .start-date,
.daterangepicker .calendar-table .end-date {
    background-color: #ffffff;
    color: #235ba0;
    border-radius: 4px; /* 선택된 날짜의 둥근 테두리 */
}

/* 선택된 날짜의 호버 효과 */
.daterangepicker .calendar-table .available:hover {
    background-color: #ffffff;
    color: #235ba0;
}

/* 달력의 헤더(월, 연도 선택 부분) */
.daterangepicker .drp-calendar .calendar-table th {
    background-color: #235ba0;
    color: #ffffff;
}

/* Apply/Cancel 버튼 스타일 */
.daterangepicker .drp-buttons .btn {
    background-color: #ffffff;
    color: #235ba0;
    border: none;
}

.daterangepicker .drp-buttons .btn:hover {
    background-color: #f1f1f1;
    color: #235ba0;
}

/* 월/연도 드롭다운 스타일 */
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    background-color: #235ba0;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.daterangepicker .calendar-table{
    background-color: #235ba0;
    border: 0;
}
.daterangepicker .drp-calendar.left{
    border-right: 1px solid #000000;
}
.daterangepicker .drp-calendar.left.single{
    border-right: unset;
}
.daterangepicker select.monthselect, .daterangepicker select.yearselect{
    background-color: #ffffff;
    padding: 3px 3px;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 0px;
}
.daterangepicker .available.active,.daterangepicker .available.in-range,.daterangepicker .available:hover{
    border-radius: 0px !important;
}
.daterangepicker.drop-up:before{
    border-top: 7px solid #235ba0 !important;
}
.daterangepicker.drop-up:after{
    border-top: 6px solid #235ba0 !important;
}



.work-schedule {

}

.work-schedule-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    text-align: left;
    border-radius: 5px 5px 0 0;
    border: 1px solid #ccc;
    border-bottom: none;
    align-items: center;
    border-right: 0px;
    background-color: #314f75;
    color: white;
}

.work-schedule-cell {

}
.team-member-list-ul-div{
    border: 1px solid #ccc;
}
.work-schedule-btn,.team-member-list-btn{
    display: flex;
    justify-content: flex-end;
    padding: 0px 0px 10px 10px;
    position: relative;
    border-bottom: 1px solid #a1a1a1;
    /* border-radius: 5px; */
    margin-bottom: 8px;
}

.team {
    display: flex;
    align-items: stretch;
    border: 1px solid #ccc;
    background-color: white;
}
.team {
    border-bottom: 0px;
}
.work-schedule-item {
    font-size: 1em;
}
.work-schedule-item:last-child {
    margin-right: -11px;
}
.work-schedule-cell, .work-schedule-item {
    text-align: center;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-schedule-cell, .work-schedule-item:not(:last-child){
    border-right: 1px solid #ccc;
}
.work-schedule-cell:nth-child(1), .work-schedule-item:nth-child(1) {
    flex: 0.3;
}

.work-schedule-cell:nth-child(2), .work-schedule-item:nth-child(2) {
    flex: 1;
}

.work-schedule-cell:nth-child(3), .work-schedule-item:nth-child(3) {
    flex: 1;
}

.work-schedule-cell:nth-child(4), .work-schedule-item:nth-child(4) {
    flex: 0.8;
}

.work-schedule-cell:nth-child(5), .work-schedule-item:nth-child(5) {
    flex: 0.3;
}

.team-schedule {
    display: flex;
    background-color: white;
}

.team-schedule > div {
    padding: 10px;
}

.team-member-list {
    flex: 0.6;
}
.team-member-list-title {
    font-size: 1.1em;
    position: absolute;
    top: 0;
    left: 0;
}
.team-container{
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 460px;
    border-bottom: 1px solid #ccc;
}
.work-schedule {
    flex: 1;
}

.team-member-list-ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 272px;
}

.team-member-list-ul li {
    margin: 5px;
    min-width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member-list-ul li.selected  > div{
    background-color: #a02391;
}
.team-member-list-ul li > div {
    background-color: #235ba0;
    border-radius: 10px;
    padding: 10px;
}

.team-member-list-ul li span {
    color: white;
}
.team-member-item-list{
    display: flex;
    line-height: 15px;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
}
.team-member-item{
    display: flex;
    line-height: 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 2px 0px;
}

.team-member-item .team-member-cell {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    width: 100%;
}
.team-member-item .team-member-cell:not(:last-child) {
    margin-right: 10px;
}
.team-member-item .team-member-cell > div{

}
.team-member-item .team-member-cell > div:first-child{
    background-color: #314f75;
    color: white;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 75px;
    text-wrap: nowrap;
    padding: 7px 20px;
    border-radius: 5px 0px 0px 5px;
}
.team-member-item .team-member-cell > div:last-child{
    width: 100%;
}
.team-member-item .team-member-cell > div > input,
.team-member-item .team-member-cell > div > select{
    border-left: 0px;
    border-radius: 0px 5px 5px 0px;
    width: 100%;
    height: 100%;
    padding: 10px;
    margin: 0px;
    border: 1px solid #a1a1a1;
}
.team-member-item .team-member-cell input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #a1a1a1;
}
.team-schedule-top{
    font-size: 0.9em;
}
.team-schedule-top-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}
.team-schedule-top-info-title{
    font-size: 1.1em;
}
.team-member-list-ul .team-member-list-item-info > div:nth-child(3){
    display: none;
}
.work-schedule-item > textarea{
    width: 100%;
    height: 100%;
    resize: none;
}
.work-schedule-item > button{
    font-size: 0.9em;
}
.work-schedule-item-leader li,
.work-schedule-item-member li{

}
.work-schedule-item-leader li:not(:last-child),
.work-schedule-item-member li:not(:last-child){
    /* border-bottom: 1px solid #235ba0; */
    margin-bottom: 10px;
}
.work-schedule-item-leader .team-member-list-item-info,
.work-schedule-item-member .team-member-list-item-info{
    flex: 1;
    border-right: 1px solid #ccc;
}
.work-schedule-item-leader .team-member-list-item-info > div,
.work-schedule-item-member .team-member-list-item-info > div {

}
.work-schedule-item-leader .team-member-list-item-info > div:not(:last-child),
.work-schedule-item-member .team-member-list-item-info > div:not(:last-child) {
    border-bottom: 1px solid #ccc;
}
.work-schedule-item-leader .team-member-list-item-info > div:nth-child(1),
.work-schedule-item-member .team-member-list-item-info > div:nth-child(1){

}
.work-schedule-item-leader .team-member-list-item-info > div:nth-child(2),
.work-schedule-item-member .team-member-list-item-info > div:nth-child(2){

}
.work-schedule-item-leader .team-member-list-item-info > div:nth-child(3),
.work-schedule-item-member .team-member-list-item-info > div:nth-child(3){
    display: flex;
    justify-content: center;
}
.team-member-list-ul .team-member-list-item-info-title{
    display: none;
}
.work-schedule-item-leader .team-member-list-item-info-title,
.work-schedule-item-member .team-member-list-item-info-title{
    display: block;
}
.team-member-list-ul .team-member-list-item-delete{
    display: none;
}
.work-schedule-item-leader .team-member-list-item-delete,
.work-schedule-item-member .team-member-list-item-delete{
    display: block;
}
.team-member-list-item{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    border: 1px solid #ccc;
}
.team-member-list-item-delete .button {
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
}
.team-member-list-item-delete .button:hover {
    filter: sepia(1) saturate(5) hue-rotate(300deg) brightness(0.8);
}
.work-schedule-item-leader,
.work-schedule-item-member{
    width: 100%;
    min-height: 50px;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-member-list-div{
    background-color: white;
    margin-top: 10px;
}
.team-member-list-ul-title{
    padding-bottom: 5px;
    font-size: 1.1em;
    border-bottom: 1px solid #a0a0a0;
    margin-bottom: 10px;
}
.team-member-list-ul-title > div{
    padding-left: 10px;
}
.drag-over {
    background-color: #fff8ff;
    border: 1px dashed #e68ff5;
    height: 100%;
}

.total-page {
    margin-top: 15px;
    margin-bottom: -18px;
}


@media print {
    /* 전체 페이지 설정 */
    body {
        margin: 0;
        padding: 0;
        display: flex;
        /*justify-content: center;
        align-items: center;*/
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

    /* 출력 박스 스타일 */
    .print-box {
        display: flex;
        flex-direction: column;
        /*justify-content: center;
        align-items: center;*/
        width: 210mm; /* A4 용지 너비 */
        height: 297mm; /* A4 용지 높이 */
        padding: 10mm; /* 기본 여백 */
        box-sizing: border-box;
        /*text-align: center;*/
        aspect-ratio: 210 / 297; /* A4 비율 유지 */
        font-size: calc(16px + 0.8vw); /* 폰트 크기 확대 */
        line-height: 1.5; /* 줄 간격 */
    }

    /* 텍스트 스타일 */
    .print-box {
        font-size: 2em; /* 제목 크기 */
        margin-bottom: 1em;
    }

    .print-box {
        margin: 0.5em 0;
    }
}