/* Make inputs clearly visible in dark theme */
.change-form form input[type="text"],
.change-form form input[type="number"],
.change-form form input[type="password"],
.change-form form input[type="email"],
.change-form form input[type="url"],
.change-form form input[type="search"],
.change-form form select,
.change-form form textarea,
.change-list .action-select {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: inherit;
}

/* Hover/focus states for better affordance */
.change-form form input:focus,
.change-form form select:focus,
.change-form form textarea:focus {
  outline: none;
  border-color: rgba(99,102,241,0.6);    /* subtle indigo */
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* Keep “pencil/plus/eye” inline with the field */
.related-widget-wrapper {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.related-widget-wrapper > select,
.related-widget-wrapper > input {
  flex: 1 1 auto;
}
.related-widget-wrapper .related-widget-wrapper-link {
  margin-top: 0 !important;   /* prevent wrap below */
  line-height: 1;
}

/* Slightly increase label contrast */
.change-form .form-row label,
.change-form .aligned label {
  color: rgba(255,255,255,0.8);
}

/* Make checkbox rows clearer */
.change-form .form-row .checkbox-row,
.change-form .form-row .checkbox {
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: .75rem 1rem;
  background: rgba(255,255,255,0.02);
}

/* Нормальная зелёная кнопка Pause 5 min в списке */
.change-list td a.btn-pause-scanning {
  all: unset;                     /* вырубить tailwind/daisy стили */
  box-sizing: border-box;

  display: inline-block !important;
  padding: 4px 12px !important;

  background-color: #22c55e !important;  /* зелёная */
  color: #020617 !important;             /* почти чёрный текст */

  border-radius: 8px !important;         /* обычный скруглённый прямоугольник */
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  text-align: center;
  cursor: pointer;
  text-decoration: none !important;
}

.change-list td a.btn-pause-scanning:hover {
  background-color: #16a34a !important;
}

.change-list td a.btn-pause-scanning:active {
  transform: translateY(1px);
}

