/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#user-list {
    width: 200px;
    height: 100%;
    background-color: #f2f2f2;
    float: left;
    overflow-y: auto;
}

#messages {
    list-style-type: none;
    padding: 0;
    overflow-y: auto;
    height: 400px; /* Điều chỉnh chiều cao tùy ý */
    border: 1px solid #ccc;
    margin: 0;
    padding: 10px;
}

#input {
    width: calc(100% - 60px); /* Độ rộng cho phần input */
    padding: 10px;
    border: 1px solid #ccc;
}

button {
    width: 50px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.container {
    overflow: hidden;
}

#messages li {
    margin-bottom: 10px;
}

.container::after {
    content: "";
    clear: both;
    display: table;
}
