/* verify.css */

.vft-verify-container {
  max-width: 600px;
  margin: 2rem auto;
  font-family: sans-serif;
}

/* ─── Drop Zones ─────────────────────────────────────────────────────────── */
.vft-drop-zone {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 3rem 1rem;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  margin-bottom: 1rem;
}

.vft-drop-zone p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ccc;
  margin: 0.2rem 0;
}

.vft-drop-zone.hover,
.vft-drop-zone.dragover {
  background-color: #e0ffe0;
  border-color: #8f8;
}

.vft-drop-zone .vft-browse-btn {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #333;
  color: #fff;
  border: 1px solid #222;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

.vft-drop-zone .vft-filename {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* ─── Results Panels ──────────────────────────────────────────────────────── */
.vft-results .panel {
  position: relative;
  border-radius: 6px;
  padding: 1.5rem 1rem 1.5rem 3.5rem;
  margin-top: 1rem;
  line-height: 1.3;
}

.vft-results .panel strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.vft-results .panel p {
  margin: 0.25rem 0;
  font-size: 1rem;
}

/* Verified File & Cover */
.vft-results .panel.verified {
  border: 1px solid #4caf50;
  background: #e8f5e9;
}
.vft-results .panel.verified::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: url("../images/check.svg") center center no-repeat;
  background-size: contain;
}

/* Revoked */
.vft-results .panel.revoked {
  border: 1px solid #d32f2f;
  background: #ffebee;
}
.vft-results .panel.revoked::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: url("../images/revoke.svg") center center no-repeat;
  background-size: contain;
}

/* Expired */
.vft-results .panel.expired {
  border: 1px solid #fbc02d;
  background: #fff8e1;
}
.vft-results .panel.expired::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: url("../images/expired.svg") center center no-repeat;
  background-size: contain;
}

/* Bitcoin Verified */
.vft-results .panel.bitcoin {
  position: relative;
  display: block;
  border: 2px solid #f7931a;
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem 1rem 1.5rem 3.5rem;
  margin-top: 1rem;
  line-height: 1.3;
}
.vft-results .panel.bitcoin::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background: url("../images/bitcoin.png") center center no-repeat;
  background-size: contain;
}
.vft-results .panel.bitcoin strong {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

/* OTS Button and Link Corner Placement */
.ots-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  text-align: right;
}

.ots-wrapper .button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f7931a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 0.3rem;
}

.ots-info {
  font-size: 0.85rem;
  margin: 0;
}

.ots-info a {
  color: #555;
  text-decoration: underline;
}

.ots-info a:hover {
  color: #000;
}

/* Reset Button */
.vft-reset-btn {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #555;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Utility Classes */
.hidden {
  display: none !important;
}
.busy {
  opacity: 0.6;
  pointer-events: none;
}








