/* 사용자 측 레이어 팝업 */
.user_popup_layer {
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: none; /* JS가 쿠키 확인 후 show */
}
.user_popup_body {
    padding: 16px;
    overflow: auto;
    font-size: 14px;
    color: #1F2937;
    line-height: 1.6;
    max-height: 70vh;
}
.user_popup_body img {
    max-width: 100%;
    height: auto;
}
.user_popup_foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #F3F4F6;
    border-top: 1px solid #E5E7EB;
    font-size: 12px;
}
.user_popup_foot .lbl_today_close {
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.user_popup_foot .btn_popup_close {
    background: #0F766E !important;
    color: #fff !important;       /* reset.css 의 color:#333 !important 덮어쓰기 */
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.user_popup_foot .btn_popup_close:hover {
    background: #115E59 !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .user_popup_layer {
        left: 10px !important;
        right: 10px !important;
        top: 50px !important;
        width: auto !important;
        max-width: calc(100vw - 20px);
    }
}
