/* 챗봇 플로팅 버튼 스타일 */
.chatbot-floating-button {
    position: fixed;
    bottom: 80px; /* 데모 버튼 위에 배치 */
    right: 20px;
    z-index: 1040;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.chatbot-floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.chatbot-floating-button:active {
    transform: scale(0.98);
}

/* 모바일에서 원형 버튼 + 아래 텍스트 */
@media (max-width: 768px) {
    .chatbot-floating-button {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 20px;
    }

    /* 모바일에서 아이콘 중앙 정렬 */
    .chatbot-floating-button i {
        margin: 0 !important;
    }

    /* 모바일에서 텍스트를 버튼 아래에 표시 */
    .chatbot-floating-button .d-none.d-md-inline {
        display: block !important;
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65rem;
        line-height: 1;
        white-space: nowrap;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 2px 6px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    }
}

/* 챗봇 모달 - 데스크톱에서 우측 하단 배치 */
@media (min-width: 769px) {
    /* 모달 초기 상태: 완전히 숨김 */
    #chatbotModal:not(.show) {
        display: none !important;
    }

    #chatbotModal.show {
        display: block !important;
    }

    /* 모달 다이얼로그 초기 위치 설정 (깜빡임 방지) */
    #chatbotModal .modal-dialog {
        position: fixed !important;
        bottom: 154px !important; /* 버튼 위 여백 (JavaScript에서 동적 조정) */
        right: 20px !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 !important;
        max-width: 450px !important;
        width: 450px !important;
        height: 600px !important;
        max-height: calc(100vh - 120px) !important;
    }

    /* 페이드 효과 */
    #chatbotModal.fade .modal-dialog {
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }

    #chatbotModal.show .modal-dialog {
        opacity: 1;
    }

    /* 모달 백드롭 투명도 조정 */
    #chatbotModal .modal-backdrop {
        opacity: 0.3;
    }
}

/* 챗봇 모달 - 모바일에서 전체화면 (키보드 대응) */
@media (max-width: 768px) {
    #chatbotModal .modal-dialog {
        /* fixed → absolute로 변경하여 키보드 대응 */
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
        /* 동적 viewport 높이 사용 (키보드를 고려) */
        height: 100dvh; /* Dynamic Viewport Height */
        height: 100vh; /* Fallback for older browsers */
        max-height: 100%;
    }

    /* dvh 지원 브라우저에서 우선 적용 */
    @supports (height: 100dvh) {
        #chatbotModal .modal-dialog {
            height: 100dvh !important;
        }
    }

    #chatbotModal .modal-content {
        border-radius: 0;
        height: 100%;
        border: none;
        display: flex;
        flex-direction: column;
    }

    /* 모달 footer를 하단에 고정하되 키보드에 반응하도록 */
    #chatbotModal .modal-footer {
        position: sticky;
        bottom: 0;
        background-color: var(--bs-body-bg);
        /* iOS Safe Area 대응 */
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        z-index: 10;
    }

    #chatbotModal.fade .modal-dialog {
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }

    #chatbotModal.show .modal-dialog {
        opacity: 1;
    }

    /* 모바일에서 백드롭 투명도 높이기 */
    #chatbotModal.modal {
        --bs-backdrop-opacity: 0.5;
    }
}

/* 모달 컨텐츠 공통 스타일 */
#chatbotModal .modal-content {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    height: 600px;
    max-height: 100%; /* modal-dialog의 max-height 제한 따름 */
}

#chatbotModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 1px solid var(--bs-border-color);
    padding: 1rem 1.5rem;
}

#chatbotModal .modal-body {
    background-color: var(--bs-secondary-bg);
    padding: 0;
}

#chatbotModal .modal-footer {
    background-color: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
    padding: 1rem;
}

/* 메시지 영역 */
#chatMessages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

/* 메시지 버블 */
.message {
    margin-bottom: 1rem;
    display: flex;
    animation: slideIn 0.3s ease-out;
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    word-wrap: break-word;
}

.message.user .message-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bot .message-bubble {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border: 1px solid var(--bs-border-color);
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* 메시지 슬라이드 인 애니메이션 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 타이핑 인디케이터 */
.typing-indicator {
    display: none;
    padding: 0 1rem 1rem;
}

.typing-indicator.active {
    display: block;
}

.typing-indicator .typing-bubble {
    display: inline-block;
    padding: 0.75rem 1rem;
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #667eea;
    margin: 0 2px;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* 입력 영역 */
#chatbotMessageInput {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

#chatbotMessageInput:focus {
    background-color: var(--bs-body-bg);
    border-color: #667eea;
    color: var(--bs-body-color);
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* 전송 버튼 */
#chatbotSendBtn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
}

#chatbotSendBtn:hover {
    opacity: 0.9;
}

#chatbotSendBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 음성 입력 버튼 */
#voiceInputBtn {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

#voiceInputBtn:hover {
    background-color: var(--bs-secondary-bg);
}

#voiceInputBtn.listening {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-color: #ff6b6b;
    animation: pulse-voice 1.5s infinite;
}

@keyframes pulse-voice {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

/* 환영 메시지 및 도움말 카드 */
.chatbot-help-card {
    background-color: var(--bs-info-bg-subtle);
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.chatbot-help-card h6 {
    color: var(--bs-info-text);
    margin-bottom: 0.5rem;
}

.chatbot-help-card ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
    color: var(--bs-body-color);
}

.chatbot-help-card li {
    margin-bottom: 0.25rem;
}

/* 에러 메시지 */
.chatbot-error-message {
    background-color: var(--bs-danger-bg-subtle);
    border: 1px solid var(--bs-danger-border-subtle);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem;
    text-align: center;
}

.chatbot-error-message i {
    font-size: 2rem;
    color: var(--bs-danger-text);
    margin-bottom: 0.5rem;
}

.chatbot-error-message h6 {
    color: var(--bs-danger-text);
    margin-bottom: 0.5rem;
}

.chatbot-error-message p {
    color: var(--bs-body-color);
    margin-bottom: 0.75rem;
}

/* 안내 메시지 스타일 (오류가 아닌 부드러운 안내) */
.chatbot-info-message {
    background-color: var(--bs-info-bg-subtle);
    border: 1px solid var(--bs-info-border-subtle);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    margin: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-info-message i {
    font-size: 1.25rem;
    color: var(--bs-info-text);
    flex-shrink: 0;
}

.chatbot-info-message p {
    color: var(--bs-body-color);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 스크롤바 스타일 (웹킷 브라우저) */
#chatMessages::-webkit-scrollbar {
    width: 6px;
}

#chatMessages::-webkit-scrollbar-track {
    background: transparent;
}

#chatMessages::-webkit-scrollbar-thumb {
    background: var(--bs-border-color);
    border-radius: 3px;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
    background: var(--bs-secondary-color);
}

/* 모달 백드롭 투명도 조정 */
#chatbotModal.modal {
    --bs-backdrop-opacity: 0.3;
}

/* 모바일에서 모달 닫기 버튼 */
@media (max-width: 768px) {
    #chatbotModal .btn-close {
        padding: 1rem;
    }
}
