/* 챗봇 페이지 */
.chat-page { padding: 0; min-height: 100vh; display: flex; }
.chat-container { max-width: 800px; width: 100%; margin: 80px auto 0; display: flex; flex-direction: column; height: calc(100vh - 80px); }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1rem 1rem; }
.chat-header h1 { font-size: 1.25rem; font-weight: 700; }
.chat-limit { font-size: 0.8rem; color: var(--gray-500); }

/* 메시지 영역 */
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.chat-welcome { text-align: center; margin: auto; padding: 2rem; }
.welcome-icon { font-size: 3rem; margin-bottom: 1rem; }
.chat-welcome h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.chat-welcome p { color: var(--gray-500); font-size: 0.9rem; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.suggest-btn { padding: 0.5rem 1rem; border: 1px solid var(--border-light); border-radius: 20px; background: var(--bg-white); font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.suggest-btn:hover { border-color: var(--primary); color: var(--primary); }

/* 감정 표시 인디케이터 */
.emotion-indicator {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem; margin: 0 1rem;
    border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    background: var(--gray-50); color: var(--gray-700);
    transition: all 0.3s ease;
    animation: emotionFade 0.3s ease;
}
.emotion-indicator.crisis-caution { background: #FFF8E1; color: #F39C12; }
.emotion-indicator.crisis-warning { background: #FFF3E0; color: #E67E22; }
.emotion-indicator.crisis-emergency { background: #FFEBEE; color: #E74C3C; font-weight: 800; }
@keyframes emotionFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
