/* 챗봇 버튼 */
.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffcc00;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 999;
}

/* 챗봇 창 */
.chatbot-window {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    z-index: 999;
    flex-direction: column;
    overflow: hidden;
    display: flex;
}

/* 챗봇 헤더 */
.chatbot-header {
    background: #ffcc00;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

/* 메시지 영역 */
.chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

/* 입력 영역 */
.chatbot-input {
    display: flex;
    border-top: 1px solid #ddd;
}
.chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}
.chatbot-input button {
    background: #ffcc00;
    border: none;
    padding: 10px;
    cursor: pointer;
}
