.sit-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* =========================
   DROPZONE (FULL WIDTH RESPONSIVE)
========================= */
.dropzone {
    width: 100%;
    height: 160px;
    border: 2px dashed #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    background: #fafafa;
    flex: 1;
}

.canvas-dropimg-wrap{
	
	display: flex;
  flex-direction: column;
  width: 70%;
}

/* =========================
   IMAGE AREA (RESPONSIVE CANVAS)
========================= */
.sit-canvas {
   flex: 5;
    min-width: 300px;
    height: auto;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sit-canvas img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   CONTROLS PANEL
========================= */
.sit-controls {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

/* =========================
   INPUT STYLING
========================= */
input[type="number"],
input[type="range"],
select {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
}

/* =========================
   BUTTONS
========================= */
button {
    padding: 8px;
    cursor: pointer;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
}

button:hover {
    background: #444;
}

#flipH, #flipV{font-size: 12px;
  background-color: #005B75;}

#flipH:hover{
	background-color: #777777;
	
}

 #flipV:hover{
  background-color: #777777;}



/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .sit-wrap {
        flex-direction: column;
    }

    .dropzone,
    .sit-canvas,
    .sit-controls {
        width: 100%;
        max-width: 100%;
    }

    .sit-canvas {
        height: 250px;
    }
}