/**
 * Quick Edit styles for Stock Message for WooCommerce
 * Handles the styling of stock message fields in the WooCommerce product list quick edit interface
 */

/* Stock message field container */
.stock_message_fields {
  margin-top: 10px;
  clear: both;
}

/* Individual field wrapper */
.stock_message_field {
  display: block;
  margin-bottom: 1.5em;
  float: none;
  width: 100%;
}

/* Field labels */
.stock_message_field .title {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  float: none;
  width: auto;
}

/* Input container */
.stock_message_field .input-text-wrap {
  display: block;
  width: 100%;
  margin-left: 0;
}

/* Text input styling */
.stock_message_field input[type="text"] {
  width: 100%;
  margin-bottom: 1.5em;
}

/* Products list column width */
.column-stock_message {
  width: min-content;
  white-space: nowrap;
}
