/* JR Temp Fields + Table Inputs White Background (v1.3.0) */

/* 1) Temp fields above the table */
.temp-fields input.desc-input,
.temp-fields input.count-input {
  background: #ffffff !important;
  color: #1f1f1f !important;
}

.temp-fields input.desc-input:focus,
.temp-fields input.count-input:focus {
  background: #ffffff !important;
  color: #1f1f1f !important;
}

/* Chrome autofill (temp fields) */
.temp-fields input.desc-input:-webkit-autofill,
.temp-fields input.count-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-text-fill-color: #1f1f1f !important;
  transition: background-color 9999s ease-out 0s;
}

/* 2) Memory table text inputs */
table input.first-name,
table input.surname,
table input.nickname {
  background: #ffffff !important;
  color: #1f1f1f !important;
}

table input.first-name:focus,
table input.surname:focus,
table input.nickname:focus {
  background: #ffffff !important;
  color: #1f1f1f !important;
}

/* Chrome autofill (table inputs) */
table input.first-name:-webkit-autofill,
table input.surname:-webkit-autofill,
table input.nickname:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-text-fill-color: #1f1f1f !important;
  transition: background-color 9999s ease-out 0s;
}

/* 3) Confidence dropdown (class is 'Confidence' in markup) */
table select.Confidence,
table select.confidence {
  background-color: #ffffff !important;
  color: #1f1f1f !important;
  /* Remove Kadence/global background image (dropdown arrow) */
  background-image: none !important;
  background: #ffffff !important;
}

/* Make options readable when dropdown opens */
table select.Confidence option,
table select.confidence option {
  background: #ffffff !important;
  color: #1f1f1f !important;
}
/* 3) Actions column: make Unlock/Lock (edit-btn) grey */
.jr-actions-stack .edit-btn,
.jr-actions-stack button.edit-btn {
  background: #e0e0e0 !important;
  color: #1f1f1f !important;
  border: 1px solid #c8c8c8 !important;
}

.jr-actions-stack .edit-btn:hover,
.jr-actions-stack button.edit-btn:hover {
  background: #d6d6d6 !important;
}

.jr-actions-stack .edit-btn:focus,
.jr-actions-stack button.edit-btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08) !important;
}
