.wpslp-container {
    display: flex;
    gap: 30px;
	 align-items: flex-start; /* Ye add karo ta ke dono box top align rahe */
}

.wpslp-preview {
    width: 50%;
    min-height: 450px;  /* ya jitni aapko required ho */
    max-height: 450px;
    height: 450px;
    /* Scroll effect ke liye overflow hidden/revert na karna */
    border: 2px solid #ddd;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: sticky;    /* Sticky effect (niche point 2 me explain hai) */
    top: 30px;           /* top se kitna distance ho */
    z-index: 10;         /* ensure it's above background etc */
}

.preview-text {
    font-size: 50px;
    font-family: Arial, sans-serif;
    color: black;
    transition: all 0.3s ease;
}

.wpslp-form {
    width: 50%;
}

.material-btn {
    padding: 8px 15px;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid #333;
    background-color: #eee;
}

.material-btn.active {
    border-color: #000;
    background-color: #ccc;
}

.background-options img {
    width: 150px;
    height: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 15px;
}

.background-options img.selected {
    background: linear-gradient(#1c1810, #1c1810) padding-box, /* Button background */ linear-gradient(179deg, #FFDF9F, #CD8A05) border-box;
    border: 2px solid transparent;
}


form#wpslp-form input, form#wpslp-form textarea {
    background: #1C1810;
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid #fdfdfd3b;
    font-size: 18px;
	color:white;
}
button#wpslp-submit-btn
{
	background: linear-gradient(#1c1810, #1c1810) padding-box, /* Button background */ linear-gradient(179deg, #FFDF9F, #CD8A05) border-box;
    color: white;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
	padding: 17px 30px;
    line-height: 1;
    float: right;
	border-radius:50px;
}
.wpslp-form .form-row .form-col > p {
    display: none;
}
.wpslp-form .form-row .form-col .div-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
	gap:15px;
}
form#wpslp-form label {
    color: white;
    font-size: 20px;
    display: block;
    padding-bottom: 20px;
}
form#wpslp-form br {
    display: none;
}
.wpslp-form .form-row {
    margin-bottom: 25px;
}
.wpslp-form .form-row .form-col .div-flex button {
    font-size: 24px;
    background: #1c1810;
    color: white;
    padding: 20px 40px;
    line-height: 1;
    border-radius: 15px;
	border: 2px solid #fdfdfd3b;
	transition:0.5s;
	margin: 0;
	width: 30%;
    margin-bottom: 10px;
}
.wpslp-form .form-row .form-col .div-flex button.active, .wpslp-form .form-row .form-col .div-flex button:hover {
    background: linear-gradient(#1c1810a6, #1c1810) padding-box, /* Button background */ linear-gradient(179deg, #FFDF9F, #CD8A05) border-box;
    border: 2px solid transparent;
}
.wpslp-form .div-led-lights .item {
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1c1810;
    padding: 20px 40px;
    border-radius: 15px;
    border: 2px solid #fdfdfd3b;
    transition: 0.5s;
	width: 30%;
    margin-bottom: 10px;
}
.wpslp-form .div-led-lights .item input {
    height: 20px;
    width: 20px;
    accent-color: #DA9E38;
}
form#wpslp-form .div-led-lights label {
    padding-bottom: 0;
}

.preview-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.wpslp-preview .preview-text {
    position: relative;
    z-index: 3;
}
