/* ===============================
   Chat Floating Widget
   =============================== */

/* 채팅 버튼 */
#chat-float-btn img {
    position: fixed !important;
    bottom: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
    /* background: #5b5bf0;
    color: #ffffff;
    font-size: 38px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* 채팅 창 */
#chat-float-box {
    position: fixed !important;
    bottom: 24px;
    right: 24px;
    width: 700px;
    height: 640px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
}

/* 헤더 */
#chat-float-header {
    height: 48px;
    background: #5b5bf0;
    color: #ffffff;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 최소화 버튼 */
#chat-float-close {
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

/* iframe */
#chat-frame {
    width: 100%;
    height: calc(100% - 48px);
    border: none;
    background: #ffffff;
}

/* ===============================
   Mobile 대응
   =============================== */
@media (max-width: 480px) {
    #chat-float-box {
        width: 100% !important;
        height: 100% !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0;
    }

    #chat-float-btn {
        bottom: 16px;
        right: 16px;
    }
}
