.wdp-dimensions-title {
    color: #333;
    font-weight: bold;
    margin: 1rem 0;
}

/* Input group styling */
.wdp-input-group {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 1rem;
}

.wdp-input-wrapper {
    display: flex;
    align-items: center;
}

.wdp-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.wdp-unit {
    margin-left: 10px;
    font-size: 1em;
    color: #666;
}

.wdp-dimensions {
    border-bottom: 1px solid #ccc;
    margin-bottom: 2rem;
}

.wdp-price {
    font-weight: bold;
    color: #000;
    margin-left: 6px;
}

.wdp-per-square-meter {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.wdp-design .wdp-input-group label,
.wdp-confirmation .wdp-input-group label{
    cursor: pointer;
}

.image-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 2rem;
}


#wallpaper-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px dashed #4CA5D2;
    height: 100%;
    cursor: move;
    overflow: hidden;
}

.wdp-dynamic-price {
	margin: 1.2rem 0;
}

@media (min-width: 992px) {
    .wdp-modal-title {
        flex-direction: row;
        align-items: center;
    }

    .wdp-input-group {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .wdp-add-to-cart {
        flex-direction: row-reverse;
        align-items: center;
    }


}