﻿ 


 .nav_item.tour.active .icon { background-image: url("/common/img/masterpage/bottom_nav/icon_tour_active.svg"); }




 .container{
     overflow-x: hidden;
 }

/* 달력 */
#calendar {
  height: 100%;
  width: 100%;
  /*aspect-ratio: 1 / 1;*/
  max-width: 100vw;
}

  .calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .calendar-header button{ 
      width: auto;
      height: auto;
  }
  .calendar-header button:first-child{
      transform: rotate(90deg);
  }
  .calendar-header button:last-child{
      transform: rotate(-90deg);
  }
  .calendar-header select{
    height: 40px;
    background-color: #ffffff;
    color: #111;
    font-weight: 500;
    text-align: center;
    padding-right: 2rem;
    background-position: right 10px center;
    text-indent: 0;
  }

  .tui-full-calendar-weekday-grid-date {
    background: transparent !important;
    border: none !important;
    position: relative;
    cursor: pointer;
  }



/*달력*/
.tui-full-calendar-layout{
    height: 540px !important;
}
.tui-full-calendar-month-week-item,
.tui-full-calendar-weekday-grid-line{
    height: 85px !important;
    border: none !important;
}



/* 등록된 일정 */
.tui-full-calendar-month-week-item .tui-full-calendar-weekday-schedule{
    border-radius: 5px !important;
    height: 16px !important;
    line-height: 16px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.tui-full-calendar-weekday-schedule-title {
    padding-top: 2px !important;
    font-weight: 400;
    font-size: 10px !important;
    text-align: center !important;
    padding-right: 10px;
}

/* 블록 자체 여백 제거(간격 커지는 현상 방지) */
.tui-full-calendar-weekday-schedule-block { margin-top: 0 !important; }

/* 블록 간 여백 제거 */
.tui-full-calendar-weekday-schedule-block {
  margin-top: 0 !important;
  height: auto !important;
}


/*일정 넘칠 시 더보기*/
.tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-more-schedules{
    line-height: 30px !important;
    height: 30px !important;
}



/* 오늘 날짜 */
.tui-full-calendar-weekday-grid-date.tui-full-calendar-weekday-grid-date-decorator {
    color: #fff !important;
    background: #272727 !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    margin-left: 0 !important;
}

  .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: inline-block;
    margin: 1px;
  }
  .dot.main { background: var(--main-color); }
  .dot.sub { background: var(--sub-color); }
  .schedule-list {
    padding: .8rem;
    border-top: 3px solid #eee;
  }
  .schedule-item {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 10px 15px;
    margin: 6px 0;
    font-size: 0.9rem;
  }



/* 추가된 일정 리스트 */
.detail_list{
    display: grid;
    row-gap: 1.6rem;
    /*border-top: 2px solid #F3F3F4;
    padding-top: 1.6rem;*/
}
.detail_list li{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.4rem;
}
.detail_list li:not(:last-child) {
    border-bottom: 1px solid #F3F3F4;
}
.date_tit{
    font-size: 1.07rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #292929;
}
.date_box {
    cursor: pointer;
  position: relative;
  padding-left: .83rem; /* 짝대기와 텍스트 사이 간격 */
}
.date_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  border-radius: 1px;
}
/* 투어일정 */
.tour_box, .schedule_box{
    cursor: pointer;
}
.tour_box::before{
  background: var(--main-color); 
}
/* 개인일정 */
.schedule_box::before{
  background: var(--sub-color); 
}
/* 일정 기간 */
.date_list{
    color: #B8B8B8;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}


/* 날짜 셀 강조 */
#calendar .tui-full-calendar-weekday-grid-date.is-selected {
  color: #ffffff;
  background: var(--main-color) !important;
  border-radius: 4px;
  font-weight: 700;
  /*width: 100%;*/
}


/* 퀵메뉴 */
 .quick_plus {
    position: fixed;
    bottom: 120px;
    right: calc((100vw - min(100vw, 480px)) / 2 + 16px);
    z-index: 9999;
  }
  .quick_main {
    background: var(--gray-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    font-size: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s;
    text-indent: 0;
  }
  .quick_hide {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 10px;
    transform: translateY(20px);
    pointer-events: none;
    display: none;
    opacity: 0;
    transition: all  0.3s ease-in-out;
  }
  .quick_hide.show {
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
    opacity: 1;
  }
  .quick_hide button {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border: 1px solid #ccc;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .quick_hide button img {
    object-fit: contain;
  }

