/* Γενικό lock */
.disabled-field {
  background-color: #fafafa;
  opacity: 1;
  color: #777;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border: 2px solid #ccc;
  border-top-color: #70C4E6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: text-bottom;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Status colors */
#afm_message.afm-success, .msg-ok { color: #5cb85c; }
#afm_message.afm-error,   .msg-error { color: #d9534f; }

/* Button states (My Account) */
.ps-afm-btn {
  background-color: #888;
  color: #000;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 4px;
  cursor: not-allowed;
  font-weight: 600;
}

.ps-afm-btn:is(:not([disabled])) {
  cursor: pointer;
  background-color: #0073aa;
  color: #fff;
}

.ps-afm-btn.state-ok {
  background-color: #5cb85c !important;
  color: #fff !important;
}

.ps-afm-btn.state-error {
  background-color: #d9534f !important;
  color: #fff !important;
}