/* ===================== */
.search-calendar-section {
    width: 100%;
    height: 12rem;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}
.calendar-warpper {
    display: flex;
    flex-direction: column;
    border: 1px solid #c1c1c1;
    border-radius: 20px;
    padding: 2rem 3rem;
    width: 33.4rem;
    min-width: 33.4rem;
    height: 12rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px #00000010;
    gap: 1.2rem;
}
.calendar-title {
    display: flex;
    justify-content: flex-start;
    text-align: center;
    gap: .6rem;

}

.calendar-banner {
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    background-color: #F6F7FB;
    border-radius: 20px;
}

.calendar-banner-description {
    cursor: pointer;
    z-index: 1;
    margin-left: 3rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.calendar-banner-btn {
    cursor: pointer;
    color: #fff;
    background-color: #2F2F2F;
    width: 12.5rem;
    height: 2.8rem;
    text-align: center;
    border-radius: 16px;
}
#calendar-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    max-height: 100%;
    max-width: 24.8rem;
    content: url('/public/banner/calander-banner-img.png');
}

.search-label-wrapper {
    display: flex;
    gap: 1rem;
}
#search-label {
    display: flex;
    align-items: center;
    height: 4rem;
}
.btn-st.reload {
    width: 4rem;
    height: 4rem;
}
.btn-st.reload::before {
    content: url("/public/reload.svg");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.2rem;
    height: 1.4rem;
}
#search-value {
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    text-align: start;
    font-family: 'Noto Sans KR', 'Noto Sans JP', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Apple SD Gothic Neo',
    'Helvetica Neue', Arial, sans-serif;
}
.search-value {
    width: 100%;
    border: 1px solid #e7e7e7;
    background: #ffffff;
    height: 4rem;
    border-radius: 10px;
    padding: 1rem 2.2rem;
    font-size: 1.4rem;
    text-align: start;
    align-content: start;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color .2s ease;
    min-width: 20rem;
    max-width: 20rem;
}
.flatpickr-calendar {
    width: 320px !important;  /* 기본 약 275px → 넓게 */
    height: 320px !important; /* 높이 늘리기 */
    font-size: 15px;          /* 글자 크기 */
}
.flatpickr-current-month {
    position: relative !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 auto;
    left: unset !important;
}
/* 날짜 박스 영역 조정 */
.flatpickr-days {
    width: 100% !important;
    min-height: 220px !important;
}

/* 각 날짜 셀 크기 */
.flatpickr-day {
    width: 2.5em !important;
    height: 2.5em !important;
    line-height: 2.5em !important;
}


#search-value::-webkit-date-and-time-value,
#search-value::-webkit-datetime-edit,
#search-value::-webkit-datetime-edit-text,
#search-value::-webkit-datetime-edit-month-field,
#search-value::-webkit-datetime-edit-day-field,
#search-value::-webkit-datetime-edit-year-field {
    font-family: 'Noto Sans KR', 'Noto Sans JP', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Apple SD Gothic Neo',
    'Helvetica Neue', Arial, sans-serif;
}

#search-value::-webkit-clear-button,
#search-value::-webkit-inner-spin-button {
    display: none;
}
#search-value::-webkit-calendar-picker-indicator {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: 0;
    cursor: pointer;
}

.on-load {
    filter: blur(3px);
    opacity: 0.3;
}
.on-load::after {
    content: url("/public/detail/loading.svg");
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#top-no-price {
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .search-calendar-section {
        flex-direction: column;
    }
    .calendar-banner {
        display: none;
    }
    .calendar-warpper {
        width: 100%;
        height: 8.4rem;
        flex-direction: row;
        gap: 1.4rem;
        align-items: center;
    }
}
@media (max-width: 620px) {
    .search-calendar-section {
        flex-direction: column;
    }
    .calendar-banner {
        display: none;
    }
    .calendar-warpper {
        width: 100%;
        height: 12rem;
        flex-direction: column;
        gap: 1.4rem;
        align-items: flex-start;
    }
}

.order-price {
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.order-price span {
    content: url("/public/order-price-unchecked.svg");
}
.order-price.checked {
    font-weight: bold;
}
.order-price.checked span {
    content: url("/public/order-price-checked.svg");
}