/* Ensure the image covers the entire screen */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans';
    font-weight: normal;
    font-style: normal;
	background-color: black;
	color: white;
}

/*
body {
	background-image: url("../img/bgpattern.webp");
	background-repeat: repeat;
}
*/


.igate-console {
	height: 80vh;
	width: 90vw;
	white-space: pre-wrap;
	font-family: 'IBM Plex Mono';
	font-size: 0.8rem;
	text-align: left;
	overflow-y: auto; /* Enables vertical scrolling */
	overflow-x: hidden; /* Hides horizontal scrolling */
	border: 1px solid #ccc; /* Optional: Just for visualization */
	padding: 10px; /* Optional: Adds some spacing inside */
	color: #4af626;
}
