.message {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    max-width: 80%;
}

.user-message {
    background-color: #e9ecef;
    margin-left: auto;
    margin-right: 1rem;
}

.bot-message {
    background-color: #f8f9fa;
    margin-right: auto;
    margin-left: 1rem;
}

.bot-message img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

#chat-container {
    height: calc(100vh - 200px);
    scroll-behavior: smooth;
}

.message-text {
    padding: 0.5rem;
    border-radius: 0.5rem;
    word-break: break-word;
} 