.debcqg-wrapper{
    display:flex;
    gap:25px;

    font-family:Arial,sans-serif;
}

.debcqg-left{
    
}

.debcqg-right{
   
}

.debcqg-card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
	text-align: left;
  display: flex;
  flex-direction: row;
	gap:20px;
}

.debcqg-card-designop{
	    background:#fff;
    padding:20px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
	text-align: left;
  display: flex;
  flex-direction: column;
	
}

.debcqg-card-col1{flex:1;}
.debcqg-card-col2{flex:1;}

.bcqr-color-wrap{display:flex; flex-direction:row; margin-bottom:20px; gap: 10px;}

.bcscan-text-wrap{text-align: left; margin-bottom:20px;}

.bclogo-upload-wrap{text-align: left; margin-bottom:20px;}
.bcqr-shape-wrap{ text-align: left; margin-bottom:20px;}

.debcqg-card input {
	
	margin-bottom:10px;
	width:100%;
}


.debcqg-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.debcqg-shapes,
.debcqg-frames{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.debcqg-shape{
    width:45px;
    height:45px;
    border:2px solid #ddd;
    border-radius:10px;
    cursor:pointer;
    position:relative;
    background:#fff;
}

.debcqg-shape::after{
    content:"";
    width:18px;
    height:18px;
    background:#000;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.debcqg-shape[data-shape="dots"]::after{
    border-radius:50%;
}

.debcqg-shape[data-shape="rounded"]::after{
    border-radius:5px;
}

.debcqg-shape[data-shape="classy"]::after{
    border-radius:12px 0;
}

.debcqg-shape[data-shape="extra-rounded"]::after{
    border-radius:50%;
    transform:translate(-50%,-50%) rotate(45deg);
}

.debcqg-shape.active{
    border-color:#000;
}

.debcqg-frame{
    padding:8px 12px;
    border:1px solid #ccc;
    cursor:pointer;
}

.debcqg-frame.active{
    background-color:#f6f6f6;
    color:#a6a6a6;
	border-color:#ecb206!important;
	font-size:12px;
	text-align:center;
	padding-top:25px;
	
}

/* PREVIEW AREA */

#debcqg-download-area{
    position:relative;
    width:300px;
    height:300px;
	
box-sizing: initial;
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: center;
    text-align:center;
	margin: 0px auto;
}
.dewbg-downloads{margin-top:40px;}
#debcqg-preview{
    position:relative;
    z-index:4;
	box-sizing: border-box!important;
	margin-top: 25px;
	margin-bottom: -25px;
}


/* FRAME BASE */

#debcqg-download-area::before{
    content:"";
    position:absolute;
    top:10px;
    left:10px;
    right:10px;
    bottom:10px;
    pointer-events:none;
    z-index:1;
}

/* NO FRAME */

.none::before{
    border:none;
	background-color:#f6f6f6;
	font-size:12px;
	
}

.debcqg-download{
    width:100%;
    padding:12px;
    margin-top:10px;
    cursor:pointer;
}

#debcqg-download-area{
    position:relative;
    overflow:hidden;
}

/* FRAME IMAGE */

#debcqg-frame-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    pointer-events:none;
}

/* CONTENT ABOVE FRAME */

#debcqg-preview,
#debcqg-frame-text{
    position:relative;
    z-index:5;
}

.debcqg-frame{
    width:70px;
    height:70px;
    border:2px solid #ddd;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    background:#fff;
    transition:0.3s;
    padding:0;
}

.debcqg-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.debcqg-frame.active{
    border-color:#000;
    transform:scale(1.05);
}

#debcqg-logo::file-selector-button {
    background: #015973;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    margin-right: 12px;
    transition: all 0.3s ease;
}

/* Hover effect */
#debcqg-logo::file-selector-button:hover {
    background: #0882a6;
    transform: translateY(-1px);
}

/* Optional: style the whole input */
#debcqg-logo {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
	.debcqg-wrapper {
  display: flex;
  gap: 25px;
  font-family: Arial,sans-serif;
  flex-direction: column;
}
	
.debcqg-card{
		 flex-direction: column;
	}
}