.willdo-builder {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
	width: 100%;
}

.willdo-builder label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.willdo-builder input[type="text"],
.willdo-builder select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.swatches-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
	flex-basis: 100%;
}

.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.swatch.semi {
    background-image: linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-color: currentColor;
}

.swatch.selected {
    border-color: #333;
}

.swatch.transparent {
    background: linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 50%, #ccc 50%, #ccc 75%, transparent 75%, transparent);
    background-size: 8px 8px;
    background-position: center;
}
.colour-labels {
    margin-top: 10px;
    font-style: italic;
    font-size: 14px;
    color: #555;
}


.swatch-tooltip {
    display: none;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 5;
}

.swatch:hover .swatch-tooltip {
    display: block;
}

#willdo-preview-container {
    margin-top: 30px;
	margin-bottom: 20px;
    text-align: center;
}

#willdo-preview svg {
    max-width: 100%;
    height: auto;
}

#willdo-preview {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
}