@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
.scheduleList-content-wrapper{
    width: 100%;
    margin: auto;
    max-width: 1533px;
}

.calendar-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.calendar-container {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
}

/*#6*/
.calendar-container .calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.calendar-container .calendar-nav .yymm-wraper {

    display: flex;
    align-items: center;
    flex-direction: column;
}

.calendar-container .calendar-nav .current-yymm {
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper{
    margin-top: 0;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper.none{
    display: none;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper.active {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper .yymm-select-view {
    display: flex;
    align-items: center;
    position: absolute;
    border: 1px solid #0c2240;
    border-radius: 10px;
    background: #ffffff;
    /*top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
    z-index:1;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper .yymm-select-view .yymm-nav-btn {
    border: 0 solid #0c2240;
    padding: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font-size: 15px;
    color: #878787;
    text-align: center;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper .yymm-select-view ul.yymm-table {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    text-align: center;
    width: 400px;
}

.calendar-container .calendar-nav .yymm-wraper .select-view-wraper .yymm-select-view li {
    width: calc(100% / 4);
    height: 20px;
    border: 0 solid #c6c6c6;
    font-weight: 500;
    align-content: center;
    cursor: pointer;
}

.calendar-container .calendar-nav .nav-btn {
    padding: 0;
    cursor: pointer;
    width: 38px;
    height: 38px;
    font-size: 30px;
    margin: 0 20px;
    text-align: center;
}

.calendar-body ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    text-align: center;
}
.calendar-body .calendar-weeks li {
    width: calc(100% / 7);
    height: 120px;
    border-top: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    font-weight: bold;
    align-content: center;
    font-size: 25px;
    background-color: #FFFFE3;
    border-bottom: 3px solid #EAE825;
}

.calendar-body .calendar-weeks li span.sun {
    color: #FF2222;
}

.calendar-body .calendar-weeks li span.sat {
    color: #003eff;
}

.calendar-body .calendar-days {
    margin-bottom: 20px;
}

.calendar-body .calendar-days li {
    /*#10*/
    z-index: 1;
    border-top: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    width: calc(100% / 7);
    height: 120px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    position: relative;
    font-size: 15px;
}
.calendar-body .calendar-days li.today {
    background-color: #FFFFE3;
}
.calendar-body .calendar-weeks li:nth-of-type(1) {
    border-left: 1px solid #c6c6c6;
}
.calendar-body .calendar-days li:nth-of-type(1),.calendar-body .calendar-days li:nth-of-type(8),
.calendar-body .calendar-days li:nth-of-type(15),.calendar-body .calendar-days li:nth-of-type(22),
.calendar-body .calendar-days li:nth-of-type(29){
    border-left: 1px solid #c6c6c6;
}
.calendar-body .calendar-days li:nth-of-type(29),.calendar-body .calendar-days li:nth-of-type(30),
.calendar-body .calendar-days li:nth-of-type(31),.calendar-body .calendar-days li:nth-of-type(32),
.calendar-body .calendar-days li:nth-of-type(33),.calendar-body .calendar-days li:nth-of-type(34)
,.calendar-body .calendar-days li:nth-of-type(35){
    border-bottom: 1px solid #c6c6c6;
}


.calendar-body .calendar-days li span.date-content{
    margin-right: auto;
    font-weight: bold;
}

.calendar-body .calendar-days li span.date-content.sun{
    color: #FF2222;
}
.calendar-body .calendar-days li:has(span.date-content.sun) {
    background-color : #F6F6F6;
}
.calendar-body .calendar-days li:has(span.date-content.sat) {
    background-color : #F6F6F6;
}

.calendar-body .calendar-days li span.date-content.sat{
    color: #003eff;
}

.calendar-body .calendar-days li span.date-content.holiday{
    color: #FF2222;
}

.calendar-body .calendar-days li span.sched-content{
    text-align: left;
    /*margin: 3px 15px;*/
    font-size: 14px;
    width: 100%;
    padding: 2px 10px;
    /*background-color: aliceblue;*/
}

.calendar-days li.in-list {
    cursor: pointer;
}

/*#11*/
.calendar-days li.inactive span {
    color: #000;
}


.calendar-days li.active span {
    color: #000;
}
.calendar-body .calendar-days li::before {
    position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

div.div-control .form-control.week-fg{
    width: 100px;
}

div.div-control .form-control.day-of-week {
    width: 100px;
}

div.div-control .form-control.time{
    width: 60px;
}

div.div-control .form-control.day{
    width: 60px;
}

div.div-control .form-control.schedule-ttl {
    width: 400px;
}

div.div-control-2 .form-control.schedule-ctnt {
    width: 400px;
}

.tooltip {
    position: absolute;
    display: none;
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: -80%;
    border: 1px solid #c6c6c6;
    place-content: center;
}
.tooltip-arrow {
    position: absolute;
    bottom: -10px; /* 툴팁 아래에 배치 */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    z-index: 1001; /* 툴팁 위에 보이도록 z-index 조정 */
}
.tooltip-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #EAE825; /* 테두리 색상 */
}

.national-day {
    background-image: url("/img/schedule/koreaday.png");
    margin-right: 5px; /* 이모지와 텍스트 사이 간격 */
}
.happy-new-year {
    background-image: url("/img/schedule/1-1-happynewyear.png");
    margin-right: 5px; /* 이모지와 텍스트 사이 간격 */
}
.christmas-day {
    background-image: url("/img/schedule/12-25-christmas.png");
    margin-right: 5px; /* 이모지와 텍스트 사이 간격 */
}
.children-day {
    background-image: url("/img/schedule/5-5-childrenday.png");
    margin-right: 5px; /* 이모지와 텍스트 사이 간격 */
}

.calendar-header .search-box-wrapper{
    display: flex;
    justify-content: right;
}
@media (max-width: 960px) {
    .calendar-body .calendar-weeks li {
        height: 70px;
        font-size: 15px;
    }
    .calendar-body .calendar-days li {
        height: 100px;
        font-size: 10px;
    }
    .calendar-body .calendar-days li span.sched-content {
        padding: 0;
        font-size: 9px;
    }
    .calendar-body .calendar-days li span.date-content {
        text-align: left;
    }
    .tooltip {
        left: -26px;
        top: -100px;
        width: 100px;
        font-size: 10px;
    }
}