/* KMSP — data trust & verification UI (v10.8)
   Visual weight follows honesty, not payment: only a confirmed gym gets a
   positive colour, and an unconfirmed one stays visibly neutral. */

.kmsp-trust {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  line-height: 1.7;
}

.kmsp-trust-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.kmsp-trust-text {
  margin: 8px 0 0;
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
}

.kmsp-trust-meta {
  margin: 8px 0 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.kmsp-trust-meta a { color: inherit; text-decoration: underline; }

.kmsp-trust--verified { border-color: rgba(64, 196, 128, .38); }
.kmsp-trust--verified .kmsp-trust-label { background: rgba(64, 196, 128, .18); color: #6fe0a8; }

.kmsp-trust--owner_claimed { border-color: rgba(96, 165, 250, .34); }
.kmsp-trust--owner_claimed .kmsp-trust-label { background: rgba(96, 165, 250, .16); color: #8fbcff; }

.kmsp-trust--reported { border-color: rgba(248, 180, 64, .42); }
.kmsp-trust--reported .kmsp-trust-label { background: rgba(248, 180, 64, .18); color: #ffca70; }

.kmsp-trust--unverified .kmsp-trust-label {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .68);
}

/* Badge used in listings and search results. */
.kmsp-trust-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  vertical-align: middle;
}

.kmsp-trust-badge--verified { background: rgba(64, 196, 128, .18); color: #6fe0a8; }
.kmsp-trust-badge--owner_claimed { background: rgba(96, 165, 250, .16); color: #8fbcff; }
.kmsp-trust-badge--reported { background: rgba(248, 180, 64, .18); color: #ffca70; }

/* Correction / owner-claim form. */
.kmsp-trust-form {
  margin: 28px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
}

.kmsp-trust-form > summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
}

.kmsp-trust-form-lead,
.kmsp-trust-form-note {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

.kmsp-trust-form label {
  display: block;
  margin: 12px 0 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
}

.kmsp-trust-form input[type="text"],
.kmsp-trust-form input[type="email"],
.kmsp-trust-form select,
.kmsp-trust-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  color: inherit;
  font: inherit;
}

.kmsp-trust-form button {
  margin-top: 14px;
  padding: 10px 22px;
  border: 0;
  border-radius: 8px;
  background: #e2483d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.kmsp-trust-form-notice {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .88rem;
}

.kmsp-trust-form-notice--ok { background: rgba(64, 196, 128, .14); color: #6fe0a8; }
.kmsp-trust-form-notice--invalid,
.kmsp-trust-form-notice--ratelimit { background: rgba(248, 180, 64, .14); color: #ffca70; }
