/* User message styling */
.user-message {
    color: #1a73e8; /* Blue color */
    font-weight: bold;
}

/* Chatbot response styling */
.bot-message {
    color: #28a745; /* Green color */
    font-weight: bold;
}

/* Chat Box styling */
.chat-box {
    height: 300px;
    border: 1px solid #ddd;
    padding: 10px;
    overflow-y: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f9f9f9;
    flex-grow: 1;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
