body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner {
    background-color: #ffc107;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0ad4e;
    color: #fff;
    font-size: 24px;
}

.chat-container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.message {
    background-color: #e7e7e7;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: left; /* Align text from the left */
}

.message.me {
    background-color: #d4edda;
    text-align: right;
    border-bottom-right-radius: 0;
}

#message {
    width: calc(100% - 20px);
    box-sizing: border-box;
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    resize: none;
    font-size: 14px;
}

#send-button {
    background-color: #28a745;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    transition: background-color 0.3s;
}

#send-button:hover {
    background-color: #218838;
}

/* Add space between questions and answers */
.message + .message {
    margin-top: 10px; /* Adjust this value as needed */
}

.space {
    margin-bottom: 10px; /* Adjust as needed */
}

img {
    max-width: 25%;
    height: auto;
    display: block;
    margin: 0 auto;
}