/* Basic styles for the Yashostute BG Creator */
.yash-bg-creator-wrap{ font-family: Arial, sans-serif; margin: 10px 0; }
.yash-controls-top{ display:flex; gap:10px; align-items:center; margin-bottom:10px; flex-wrap:wrap; }
.yash-controls-top label{ font-size:14px; }
.yash-upload-label input{ display:inline-block; margin-left:8px; }
.yash-download-btn{ padding:8px 12px; border-radius:6px; background:#0073aa; color:white; border:none; cursor:pointer; }
.yash-download-btn:hover{ opacity:0.95; }

.yash-bg-creator-canvas{
    width:100%;
    height:500px;
    position:relative;
    border-radius:8px;
    overflow:hidden;
    background-color:#eee;
    background-size:cover;
    background-position:center center;
    box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

/* overlay image placed right-center */
.yash-overlay-img{
    position:absolute;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    max-width:35%;
    max-height:80%;
    display:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
    border-radius:6px;
}