/* .trial {
    display: flex;
    flex-direction: row;
}

.img {

}

.text_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prompt {

}

.response {
    
}

p {
    font-size: 16px;
    text-align: left;
}
.correct {
    color: green;
}

.incorrect {
    color: red;
} */

body {
    font-family: 'Arial', sans-serif;
    background-color: #F4F4F4
;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}.trial {
    background-color: #FFFFFF
;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
}.img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}.text_container {
    margin-top: 20px;
}.text_container h3 {
    color: #007BFF
;
    margin-bottom: 15px;
}.prompt, .response {
    font-size: 16px;
    margin-bottom: 10px;
    white-space: pre-line;
    
}.prompt {
    color: #555;
}.response {
    color: #333;
    background-color: #E9ECEF
;
    border-left: 4px solid #007BFF
;
    padding: 5px 10px;
    border-radius: 4px;
}.correct {
    color: #28A745
;
    font-weight: bold;
}.incorrect {
    color: #DC3545
;
    font-weight: bold;
}p[class^="prompt"]:empty, p[class^="response"]:empty {
    display: none;
}