
/* Basic reset/styling */
body {
	margin: 0;
	font-family: sans-serif;
	background-color: black;
}

/* Table Style */
table {
	border-collapse: collapse;
	width: 100%;
}

th, td {
	border: 1px solid black;
	padding: 8px;
}

/* 1. The parent container */
.container {
	/* Enable Flexbox */
	display: flex;
	/* Set up horizontal */
	flex-direction: row;
	/* Centers the content horizontally (optional, but often helpful) */
	margin: 0;
	padding: 20px;
}

/* 2. Defining the Column Widths */
.sidebar-left,
.sidebar-right {
	/* The sidebars will each take up 15% of the container width */
	padding: 15px;
	background-color: tan;
	border-radius: 5px;
	margin: 0 10px;
	flex: 0 0 250px;
	box-sizing: border-box;
}

.content {
	/* The main content will take up 70% of the available space */
	flex: 1;
	padding: 20px;
	background-color: white;
	border-radius: 5px;
	margin: 0 10px;
	box-sizing: boarder-box;
}

/* Media Query for Mobile/Small Screen */
@media (max-width: 768px) {
	.container {
		/* Change the direction to stack items vertically */
		flex-direction: column;
		padding: 10px; /* Redce padding on mobile */
	}
	.sidebar-left,
	.sidebar-right,
	.content {
		/* On small screen all sections take up 100% width */
		flex-basis: 100%;
		margin: 10px 0; /* Add margin to separate stacked items */
	}
}

/* Copy button */
#server-ip, #port-num {
	color: #000000;
	font-family: 'Courier New', monospace;
	font-weight: bold;
	margin-right: 15px;
}

#copy-btn {
	background: #444;
	color: white;
	border: none;
	padding: 2px 5px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 0.8em;
	transition: background 0.2s;
}

#copy-btn:hover {
	background: #777;
}

#copy-btn.success {
	background: #28a745;
}
