#wpv-visualizer {
    max-width: 1000px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#wpv-visualizer h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

#wpv-canvas {
    border: 2px solid #ddd;
    border-radius: 5px;
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

#wpv-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step {
    padding: 10px 20px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 5px;
    color: #666;
}

.step.active {
    background: #007cba;
    color: white;
}

#wpv-step-content {
    text-align: center;
    margin-bottom: 20px;
}

#wpv-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

#wpv-controls button, #wpv-controls select {
    padding: 10px 15px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#wpv-controls button:hover, #wpv-controls select:hover {
    background: #005a87;
}

#wpv-products ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    overflow-x: auto;
}

#wpv-products li {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    transition: background 0.3s;
    text-align: center;
    min-width: 80px;
}

#wpv-products li:hover {
    background: #f0f0f0;
}

#wpv-products li img {
    max-width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    margin: 0 auto 5px;
    border-radius: 3px;
}

#wpv-navigation {
    margin-top: 20px;
    text-align: center;
}

#wpv-navigation button {
    margin: 0 10px;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#wpv-navigation button:hover {
    background: #005a87;
}

.hidden {
    display: none !important;
}