@charset "utf-8";
/**
.chat-container {
	height: 50vh;
    overflow-y: auto;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 20px;
}

.message {
	margin-bottom: 15px;
    max-width: 80%;
}

.user-message {
	margin-left: auto;
    background: #007bff;
    color: white;
    border-radius: 15px 15px 0 15px;
}

.assistant-message {
	margin-right: auto;
    background: #e9ecef;
    color: #333;
    border-radius: 15px 15px 15px 0;
}

.message-content {
	padding: 10px 15px;
    word-wrap: break-word;
}

#loading-indicator {
	display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
}
**/