/* Prevent text selection during drag */
.option-list-dragging {
  user-select: none !important;
}
/* Enhanced styling for the option list widget */
.option-list-widget {
  margin: 1em 0;
  background: #f8f8f8;
  border-radius: 6px;
  padding: 1em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.option-list-widget table {
  width: 100%;
  border-collapse: collapse;
}
.option-list-widget th, .option-list-widget td {
  padding: 0.5em;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}
.option-list-widget th {
  background: #f0f0f0;
  font-weight: 600;
}
.option-list-widget input[type="text"] {
  width: 95%;
  padding: 0.3em;
  border-radius: 3px;
  border: 1px solid #ccc;
}
.option-list-widget button {
  background: #e0e0e0;
  border: none;
  border-radius: 3px;
  padding: 0.3em 0.7em;
  cursor: pointer;
  font-size: 0.95em;
  margin-left: 0.2em;
  min-width: 60px;
  white-space: nowrap;
}
.option-list-widget button:hover {
  background: #d0d0d0;
}
.option-list-widget .add-row-btn {
  margin-top: 0.7em;
  background: #0073e6;
  color: #fff;
  font-weight: 600;
}
.option-list-widget .add-row-btn:hover {
  background: #005bb5;
}
.option-list-widget .drag-handle {
  cursor: grab;
  color: #888;
  font-size: 1.2em;
  padding-right: 0.5em;
}
