#image-draw-container {
	border: 2px solid gray;
    width: 600px;
    height: 600px;
    position: relative;
}

#image-draw-canvas {
    position: absolute;
    z-index: 10;
    pointer-events: auto;
}





  .color-picker {
        width: 300px;
        border: 1px solid #d3d3d3;
        padding: 10px;
        margin: 20px auto;

    }

    .basic-design-header {
        text-align: center;
        margin-bottom: 10px;
    }

    .basic-design-tabs {
        display: flex;
        justify-content: space-around;
        margin-bottom: 10px;
    }

    .tab {
        background: none;
        border: none;
        cursor: pointer;
    }

    .tab.active {
        font-weight: bold;
        border-bottom: 2px solid #000;
    }

    .basic-design-tab-content {
        border-top: 1px solid #d3d3d3;
        padding-top: 10px;
    }

    .basic-design-tab-pane {
        display: none;
    }

    .basic-design-tab-pane.active {
        display: block;
    }

    .color-options {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .color {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #000;
        cursor: pointer;
    }

    .custom-color {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }

    #color-front {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #000;
        background: none;
        cursor: pointer;
    }

    .done-button {
        width: 100%;
        margin-top: 10px;
        padding: 5px;
        background-color: #000;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .image-upload-config {
    width: 300px;
    border: 1px solid #d3d3d3;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 20px auto;
}



    .image-preview {
        text-align: center;
        position: relative;
    }

    .image-preview img {
        max-width: 200px;
        max-height: 200px;
        margin: auto;
        object-fit: contain;
    }

    #remove-image {
        position: absolute;
        top: 10px;
        right: 10px;
        transform: translateX(-50%);
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #ff0000;
    }

    .controls {
        margin-top: 10px;
    }

    .controls label {
        display: block;
        margin-bottom: 5px;
    }

    .controls input[type="range"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .controls button {
        width: 100%;
        padding: 5px;
        margin-bottom: 10px;
        background-color: #509b44;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .image-move-control-container {
        display: flex;
        justify-content: center;
    }

    .image-move-control {
        margin-left: -30px; /* same as the font size*/ 
		width: 120px;
		height: 120px;
		margin-top: 20px;
        margin-bottom: 20px;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
    }
    .image-move-control .arrow {
	    width: 0;
		height: 0;
		position: absolute;
		font-size: 30px;
		cursor: pointer;
    }

    .image-move-control .arrow.up {
        top: 0px;

    }

    .image-move-control .arrow.down {
        bottom: 0px;
    }

    .image-move-control .arrow.left {
        left: 0px;
    }

    .image-move-control .arrow.right {
        right: 0px;
    }


    .save-btn {
        background-color: #509b44;
        color: #fff;
        border: none;


    }

    .save-btn:focus, .save-btn:active:focus, .save-btn.active:focus, .save-btn.focus, .save-btn:active.focus, .save-btn.active.focus {
        outline: none;
        color: #fff;
        outline-offset: -2px;
    }

