body {
    font-family: 'Helvetica', sans-serif;
    background-image: url('/static/assets/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: #333;
}

img[src="/static/assets/logo.png"] {
    width: 200px;
    float: left;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-left {
    text-align: left;
}

.mb-3 {
    margin-bottom: 20px;
}

#chat-window {
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    border-radius: 5px;
}

#source-window {
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    border-radius: 5px;
    height: 400px;  /* Adjust as needed */
}

#chat-input-section {
    display: flex;
    gap: 10px;
}

#chat-input {
    flex: 1;
}

.btn {
    background-color: #007BFF;
    border: none;
}

.btn:hover {
    background-color: #0056b3;
}
.message-box {
    border: 2px solid #aeaeae;
    background: rgb(168, 255, 203);
    padding: 10px;
    margin-bottom: 10px;
}

.question {
    font-weight: bold;
    font-size: medium;
}
.answer {
    margin-left: 10px;
    font-size: medium;
}

.source {
    margin-left: 10px;
    font-style: italic;
    font-size: smaller;
    font-family: 'Courier New', Courier, monospace;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #007BFF;
}
