body {
	font-family: Arial;
	margin: 0;
	background: #f2f2f2;
}

#login {
	display: flex;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

#login-box {
	background: white;
	padding: 30px;
	border-radius: 10px;
	width: 300px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-align: center;
}

#chat {
	display: none;
	height: 100vh;
	grid-template-columns: 250px auto;
}

#users {
	background: #333;
	color: white;
	padding: 15px;
	overflow-y: auto;
}

#chat-area {
	padding: 15px;
	display: flex;
	flex-direction: column;
}

#messages {
	flex: 1;
	overflow-y: auto;
	background: white;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 15px;
}

.message {
	margin: 6px 0;
	padding: 8px;
	background: #e6e6e6;
	border-radius: 6px;
}

.my-message {
	background: #d1ecf1;
}

#message-box {
	display: flex;
	gap: 10px;
}
#message-box input {
	flex: 1;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
}
#message-box button {
	padding: 10px 20px;
	background: #007bff;
	border: none;
	color: white;
	border-radius: 6px;
}
