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: 250px;
    margin: 0;
}

li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: black;
    /* Remove flexbox properties to allow block-level stacking */
}

button,
a {
    margin-right: 10px;
    flex-shrink: 0;
    /* Prevent buttons from shrinking */
}

