#app-body {
	display: flex;
	width: 100vw;
	height: 94vh;
	overflow: hidden;
}

#app-body > div {
	height: 94vh;
}

#components-box {
	width: 17vw;
	background-color: white;
	border-right: 1px solid #e3e3e3;
}

#components-box h2 {
	margin: 10px;
	font-family: sans-serif;
}

#components-box button {
	height: 100px;
	background: none;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border: 1px solid transparent;
	cursor: pointer;
	transition: .3s;
}

#components-box button:active {
	transform: scale(.9);
}

#components-box button:hover {
	border-color: royalblue;
}

#components-box button:hover span {
	color: royalblue;
}

#components-box button svg {
	width: 26px;
}

#components-box button span {
	font-size: 13px;
	margin-top: 10px;
}

#canvas-box {
	width: 67vw;
	position: relative;
}

#canvas {
	width: 100%;
	height: 89vh;
	border: none;
}

#help {
	width: 100%;
	position: relative;
}

#help input {
	font-size: 17px;
	padding: 7px;
	border: 1px solid lightgray;
	outline: none;
	width: 85%;
	background: transparent;
	margin-top: 10px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 4px;
}

#help textarea {
	font-size: 17px;
	padding: 7px;
	border: 1px solid lightgray;
	outline: none;
	width: 85%;
	background: transparent;
	margin-top: 10px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 4px;
	font-family: sans-serif;
	height: 75px;
	max-height: 250px;
	resize: vertical;
}

#styling-box {
	width: 230px;
	background-color: white;
	border-left: 1px solid #e3e3e3;
	overflow: hidden;
	position: relative;
}

#styling-box h2 {
	margin: 10px;
	font-family: sans-serif;
}
#components {
	margin: 10px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: .5em;
}

#help button {
	display: none;
}

#prev-link {
	color: #1a73e8;
	text-decoration: none;
	margin-right: 10px;
}

#prev-link:hover {
	text-decoration: underline;
}

#img-prev-box {
	width: 90%;
	border-radius: 4px;
	user-select: none;
	align-items: center;
	position: relative;
	margin: 10px 0;
	font-size: 15px;
	font-family: sans-serif;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

#img-prev-box > img {
	width: 100%;
}

#img-prev-box > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	user-select: none;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
	cursor: pointer;
}

#img-prev-box:hover div {
	visibility: visible;
	opacity: 1;
}

#img-prev-box > div > svg {
	stroke: white;
	width: 30px;
	margin-bottom: 10px;
}

#file-input {
	margin: 10px 0;
	border-radius: 5px;
	background-color: #efefef;
	border: 1.5px solid transparent;
	font-family: sans-serif;
	padding: 12px;
	font-size: 17px;
	outline: none;
	resize: vertical;
	width: calc(100% - 24px);
	cursor: pointer;
	display: block;
	user-select: none;
}

#art-thumb {
	display: none;
}