body {
	background-color: black;
	margin: 0;
	font-family: sans-serif;
}

.lang-wrapper {
	position: absolute;
	top: 10px;
	right: 10px;
}

.lang-button {
	cursor: pointer;
	padding: 8px 14px;
	border: 1px solid #888;
	border-radius: 5px;
	background-color: #222;
	color: white;
	font-weight: bold;
}

.lang-dropdown {
	display: none;
	position: absolute;
	right: 0;
	background-color: #333;
	border: 1px solid #555;
	border-radius: 5px;
	margin-top: 5px;
	z-index: 1000;
	color: white;
	box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

.lang-dropdown div {
	padding: 8px 14px;
	cursor: pointer;
}

.lang-dropdown div:hover {
	background-color: #555;
}