@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #333642;
}

.editor {
	display: flex;
}

.container {
	height: 100vh;
	width: 100vw;
	display: grid;
	grid-template-rows: 1fr 1fr;
	grid-gap: 10px;
}

.coder {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	padding: 0 10px 10px 10px;
}

.code-editor {
	height: 90%;
	width: 100%;
}

.code-type {
	color: rgb(255, 255, 255);
	font-family: "Roboto", sans-serif;
	height: fit-content;
	width: 100%;
	background-color: #1a1b1f;
	padding: 10px;
	border-bottom: 1px solid #333642;
}

.code-type {
	border-radius: 10px 10px 0 0;
}

.code {
	background-color: #1d1e22;
	width: 100%;
	height: 100%;
	border-radius: 0 0 10px 10px;
}

.ace_gutter {
	background-color: #1d1e22 !important ;
}

.ace_gutter-cell.ace_gutter-active-line {
	background-color: #1d1e22 !important ;
}

.output {
	background-color: rgb(255, 255, 255);
	border-radius: 8px;
}

.virtual-iframe {
	height: 100%;
	width: 100%;
}
