
	#openDrawingButton {
		position: relative;
		width: 100%;
		height: 100%;
		cursor: pointer;
	}

	.modal {
		display: none;
		position: fixed;
		z-index: 1000;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background-color: rgba(0, 0, 0, 0.8);
		justify-content: center;
		align-items: center;
	}

	.modal-content {
		background-color: #fff;
		padding: 0;
		border-radius: 5px;
		position: relative;
		width: 1000px;
		height: 300px;
		display: flex;
		flex-direction: column;
	}

	.close-button {
		position: absolute;
		top: 10px;
		right: 15px;
		font-size: 30px;
		font-weight: bold;
		color: #aaa;
		cursor: pointer;
		z-index: 1001;
	}

	.close-button:hover {
		color: #000;
	}

	#drawingCanvas {
		display: block;
		width: 100%;
		height: 100%;
		touch-action: none;
		border: 1px solid #ccc;
	}

	.controls {
		display: flex;
		justify-content: space-between;
		padding: 10px;
		background: rgba(255, 255, 255, 0.8);
	}

	.controls input[type="range"] {
		vertical-align: middle;
	}

	.controls button {
		padding: 8px 16px;
		font-size: 14px;
		cursor: pointer;
	}

	#previewImageA1,
	#previewImageA2,
	#previewImageB1,
	#previewImageB2 {

		max-width: 195px;
		max-height: 50px;
		width: auto;
		//height: auto;
		height:60px;

		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);

		//border: 1px solid #ccc;

	}



















