body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

#username-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Add this at the end of the styles.css file */
#chat-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 20px;
    color: blue;
}

#chat-input {
    width: 300px;
    padding: 5px;
}
