/* ARTICLE SUGGESTIONS IN CHAT */
.article-suggestions {
    margin: 16px 0;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #108A00;
}

/* MARKDOWN STYLING IN MESSAGES */
.message-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #108A00;
    margin: 16px 0 8px 0;
}

.message-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #242424;
    margin: 12px 0 6px 0;
}

.message-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    margin: 10px 0 6px 0;
}

.message-content strong {
    font-weight: 600;
    color: #242424;
}

.message-content ul {
    margin: 8px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.message-content li {
    margin: 4px 0;
    line-height: 1.6;
}

.message-content a {
    color: #108A00;
    text-decoration: underline;
}

.message-content a:hover {
    color: #00431E;
}

.suggestions-header {
    font-weight: 600;
    color: #108A00;
    margin-bottom: 12px;
    font-size: 14px;
}

.suggestion-card {
    display: block;
    padding: 12px;
    margin: 8px 0;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.suggestion-card:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(16, 138, 0, 0.1);
    border-color: #108A00;
}

.suggestion-title {
    color: #242424;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.suggestion-category {
    color: #108A00;
    font-size: 12px;
    text-transform: uppercase;
}

/* TYPING INDICATOR */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #f3f4f6;
    border-radius: 12px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #108A00;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots 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;
    }
}