/**
 * 파모 AI 챗봇 도우미 스타일
 */

/* 챗봇 위젯 기본 스타일 */
/* .chatbot_widget {
    position: relative;
} */

/* 채팅 영역 */
/* .chatbot_widget .chatting_area {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
} */

/* 채팅 메시지 */
/* .chatbot_widget .chat_message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
    line-height: 1.5;
    animation: fadeIn 0.3s ease-in;
} */

/* @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
} */

/* AI 메시지 (왼쪽) */
/* .chatbot_widget .chat_message.you {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    margin-right: auto;
    color: #333333;
} */

/* 사용자 메시지 (오른쪽) */
/* .chatbot_widget .chat_message.i {
    background-color: #4a90e2;
    color: #ffffff;
    margin-left: auto;
    text-align: right;
} */

/* 로딩 메시지 */
/* .chatbot_widget .chat_message.loading {
    background-color: #f0f0f0;
    color: #666;
    font-style: italic;
} */

/* .chatbot_widget .chat_message.loading .dots {
    display: inline-block;
    min-width: 20px;
} */

/* 입력 영역 */
/* .chatbot_widget .chat_message_input {
    position: relative;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: flex-end;
} */

/* .chatbot_widget .chat_message_input textarea {
    flex: 1;
    padding: 10px;
    padding-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    font-size: 14px;
    font-family: inherit;
    min-height: 60px;
} */

/* .chatbot_widget .chat_message_input textarea:focus {
    outline: none;
    border-color: #4a90e2;
} */

/* 전송 버튼 */
/* .chatbot_widget .btn_send {
    padding: 10px 20px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
    white-space: nowrap;
    height: 40px;
    min-width: 60px;
} */

/* .chatbot_widget .btn_send:hover {
    background-color: #357abd;
} */

/* .chatbot_widget .btn_send:active {
    background-color: #2a5f9e;
} */

/* .chatbot_widget .btn_send:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
} */

/* 스크롤바 스타일 */
/* .chatbot_widget .chatting_area::-webkit-scrollbar {
    width: 6px;
} */

/* .chatbot_widget .chatting_area::-webkit-scrollbar-track {
    background: #f1f1f1;
} */

/* .chatbot_widget .chatting_area::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
} */

/* .chatbot_widget .chatting_area::-webkit-scrollbar-thumb:hover {
    background: #555;
} */

/* 챗봇 헬퍼 텍스트 - 제거 kbk*/
/* .chatbot_helper {
    display: inline-block;
    padding: 5px 10px;
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 10px;
    cursor: help;
}

.chatbot_helper:hover {
    background-color: #ffeaa7;
} */