/* Standardized Disabled Fields Styling */

/* Light Mode (Default) */
:root input:disabled,
:root select:disabled,
:root textarea:disabled,
:root button:disabled,
:root input[readonly],
:root select[readonly],
:root textarea[readonly] {
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}

/* Dark Mode */
.theme-dark input:disabled,
.theme-dark select:disabled,
.theme-dark textarea:disabled,
.theme-dark button:disabled,
.theme-dark input[readonly],
.theme-dark select[readonly],
.theme-dark textarea[readonly] {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
