body {
    font-family: Arial, sans-serif;
    margin: 20px;
	background-color: rgb(164, 108, 204);
	color: white;
}
input {
	color: black;
}
input.file {
	color: white;
}
h1 {
	color: white;
}
h2 {
    color: #333;
	color: white;
}
/*
#chat {
        display: flex;
        flex-direction: column-reverse; /* New CSS to reverse message order */
    }
form {
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
    max-width: 400px;
    /* Set a max width for ul */
    margin: 0;
    /* Reset margin to align to the left */
}

li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
	color: black;
    /* Center items vertically */
}

button,
a {
    margin-right: 10px;
    flex-shrink: 0;
    /* Prevent buttons from shrinking */
}