body {
    color: #f5f5f5;
    font-family: 'Arial', sans-serif;
}

.user-message {
    background-color: rgb(86, 144, 163);
    color: white;
    padding: 10px;
    border-radius: 10px;
    white-space: pre-wrap;
    margin-left: auto;
    margin-right: 0;
    max-width: 90%;
}

/* Style for evaluation response */
.response-message {
    background-color: rgb(62, 62, 62);
    color: white;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    margin-right: auto;
    max-width: 90%;
}

.response-message p {
    margin-bottom: 0.5rem;
}

/* Style for the evaluation container */
#evaluation-container {
    display: none;
    margin: 0 auto;
    overflow: auto;
}

#evaluation-history {
    display: flex;
    flex-direction: column;
}

.evaluation-result {
    padding: 10px;
}

.evaluation-result h5 {
    color: #5a9fd4;
    margin-bottom: 1rem;
}

.evaluation-result ul {
    list-style: none;
    padding-left: 0;
}

.evaluation-result li {
    padding: 0.3rem 0;
}

.evaluation-result strong {
    color: #90d0ff;
}

#scroll-wrapper {
    padding-top: 120px;
    padding-bottom: 5.5rem;
}

#input-area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#user-input {
    overflow-y: auto;
    resize: none;
    height: 40px;
    max-height: 200px;
}

@media (max-width: 600px) {
    .d-flex h1 {
        font-size: 1.5rem;
    }
}
