
#paint {
	width: 100%; 
	height: 100%;
	/* width: 340px;
	height: 340px; */
}

#sketch {
	border: 2px solid gray;
	position: relative;
	float: left;
	width: 600px;
	height: 600px;
	/* padding: 10px; */
}



#tmp_canvas {
	position: absolute;
	left: 0px; 
	top: 0px;
	cursor: crosshair;
}

#paint-panel {
	padding: 0px 10px;
	width: 20%;
	height: 100%;
	float: left;
	border-radius: 4px;
}

#paint-panel .btn-group {
	width: 90px;
	margin: 0 auto;
	display: block;
	background-color: #fafafa;
	overflow: auto;
	padding: 0px 4px;
}

#choose-size {
	width: 90px;
	margin: 0 auto;
	display: block;
	margin-top: 20px;
}

#paint-panel .title {
	font-weight: bold;
	color: rgba(100,100,100, 0.8);
	font-style: italic;
	font-size: 13px;
	margin-bottom: 5px;
	text-align: center;
}

#paint-panel .btn-group .btn{
	background-color: #fafafa;
}

#paint-panel .radio-group {
	display: block;
	width: 30px;
	margin: 0 auto;
}



#paint-undo-redo {
	display: inline-block;
	margin-left: 30px;
}

#paint-clear {
	margin-left: 30px;
	
}

.selected-icon {
    color: red; /* Change this color to any color you prefer */
}

#text_tool {
    position: absolute;
    border: 1px dashed black;
    outline: 0;
    display: none;
    
    padding: 4px 8px; 
    font: 14px;
    overflow: hidden;
    white-space: nowrap;
}


/* arrow move control */

   .move-control {
		width: 80px;
		height: 80px;
		margin-top: 40px;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.arrow {
		width: 0;
		height: 0;
		position: absolute;
		font-size: 30px;
		cursor: pointer;
	}

	.arrow.up {
		top: 0;
	}

	.arrow.down {
		bottom: 0;
	}

	.arrow.left {
		left: 0;
	}

	.arrow.right {
		right: 0;
	}