.wsb-bundle-form .wsb-component-block {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 15px;
}
.wsb-bundle-form h3 {
  margin-top: 0;
}



.wsb-component {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.wsb-component-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.wsb-component-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.wsb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
}

.wsb-item-name {
    font-size: 1rem;
    font-weight: normal;
    color: #444;
    cursor: pointer;
}

.wsb-quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wsb-btn-decrement, .wsb-btn-increment {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 3px;
}

.wsb-btn-decrement:hover, .wsb-btn-increment:hover {
    background-color: #005f8c;
}

input[type="number"] {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px;
    font-size: 1rem;
}

#wsb-preview-image {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    display: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
