* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #111;
	color: white;
	font-family: monospace;
}

p {
	font-size: 16px;
}

#game-container {
	max-width: 60vw;

	display: block;

	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	user-select: none;

	background: #333;
}

#chat-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1vh;
}

.split-container {
	display: flex;
	gap: 4vh;
	padding: 4vh;
}

#chat-box {
	border: 0.125vh solid gray;
	padding: 1vh;
	flex: 1;
	display: flex;
	gap: 1vh;
	flex-direction: column;
}

#chat-input {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	user-select: none;
	outline: none;
	font-size: 2vh;
	padding: 0.5vh;
}

.message {
	font-size: 1.75vh;
}

canvas {
	border-radius: 0.5vh;
}

.hidden {
	display: none !important;
}

table {
	width: 100%;
}

td, th {
	white-space: nowrap;
}

.volume {
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: space-around;
    height: 10vh;
    align-content: center;
    flex-wrap: wrap;
}

input {
	cursor: pointer;
}

.content {
	margin: 4vh;
	margin-top: 0;
	overflow: auto;
}

.update {
	margin: auto;
	width: 100%;
	background: #333;
	border-radius: 0.5vh;
	padding: 2vh;
}

h1 {
	text-align: center;
}

.footer {
	text-align: center;
	margin-top: 20vh;
	margin-bottom: 20vh;
}

a {
	color: white;
}

@media (orientation: portrait) {
	.content {
		width: 90vw;
	}
}

/* scrollbar customization */
/* For Webkit browsers like Chrome, Safari */
html::-webkit-scrollbar {
    width: 0.5vw;  /* Adjust width of the scrollbar */
}

html::-webkit-scrollbar-track {
    background: #030303;  /* Background color of the track */
}

html::-webkit-scrollbar-thumb {
    background: #333;  /* Color of the moving scrollbar element */
}

html::-webkit-scrollbar-thumb:hover {
    background: #333;  /* Slightly different shade of orange when hovered */
}
