
/* Transparent background and white text */
.mfefe-container,
.mfefe-container * {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
/* Inputs, selects, textarea, buttons */
.mfefe-container input,
.mfefe-container select,
.mfefe-container textarea,
.mfefe-container button {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}
/* Headings */
.mfefe-container h3 {
  color: #fff !important;
}
/* User list box */
.mfefe-user-list {
  background: transparent !important;
  border: 1px solid #fff !important;
}

/* Dropdown styling for readability */
.mfefe-container select {
  background: rgba(0, 0, 0, 0.8) !important;
  color: #fff !important;
}
/* Ensure options are visible */
.mfefe-container select option {
  background: #000 !important;
  color: #fff !important;
}

/* User list in a single column */
.mfefe-user-list {
  display: flex;
  flex-direction: column;
}


/* Image preview styling */
#product-image-preview, img#product-image-preview {
  max-width: 200px;
  display: block;
  margin: 10px 0;
}
/* New image preview styling */
img#new-product-image-preview {
  max-width: 200px;
  display: block;
  margin: 10px 0;
}
/* Placeholder text white */
.mfefe-container input::placeholder,
.mfefe-container textarea::placeholder {
  color: #fff !important;
  opacity: 1;
}
