.wpup-wholesale-container {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpup-product-unit {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.wpup-label {
    font-size: 0.7em;
    color: #d63031;
    vertical-align: middle;
    margin-right: 5px;
}

/* Switch Styles */
.wpup-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.wpup-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.wpup-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.wpup-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .wpup-slider {
  background-color: #2196F3;
}

input:focus + .wpup-slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .wpup-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.wpup-slider.round {
  border-radius: 34px;
}

.wpup-slider.round:before {
  border-radius: 50%;
}

.wpup-switch-label {
    font-weight: bold;
    font-size: 15px;
}