#sh-designer-app { display: flex; gap: 30px; background: #fff; padding: 20px; border: 1px solid #ddd; border-radius: 10px; font-family: Arial, sans-serif; }
.sh-controls { width: 280px; padding: 15px; background: #f9f9f9; border-radius: 8px; flex-shrink: 0; }
.sh-controls h3 { margin-top: 0; font-size: 18px; color: #333; }
.sh-controls input, .sh-controls button { width: 100%; margin-bottom: 15px; padding: 12px; border-radius: 6px; border: 1px solid #ccc; box-sizing: border-box; }
.sh-controls button { cursor: pointer; font-weight: bold; border: none; transition: background 0.3s; }
.sh-controls button:hover { opacity: 0.9; }

.sh-preview-area { flex-grow: 1; display: flex; justify-content: center; align-items: center; background: #eee; border-radius: 8px; padding: 20px; }
#sh-shirt-wrapper { position: relative; width: 100%; max-width: 500px; /* Giới hạn hiển thị trên web */ height: auto; }
#sh-main-shirt { width: 100%; height: auto; display: block; }

/* VÙNG IN CHUYỂN SANG TỶ LỆ % (RẤT QUAN TRỌNG) */
#sh-canvas-container { 
    position: absolute; 
    top: 22%;    /* Vị trí Y tính theo % chiều cao áo */
    left: 30%;   /* Vị trí X tính theo % chiều rộng áo */
    width: 40%;  /* Chiều rộng vùng in tính theo % chiều rộng áo */
    height: 50%; /* Chiều cao vùng in tính theo % chiều cao áo */
    border: 1px dashed rgba(255,255,255,0.5); 
    box-sizing: border-box;
}
#sh-canvas { width: 100% !important; height: 100% !important; }