body {
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
  background: #f4f4f4;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.verify-card {
  max-width: 460px;
  width: 100%;
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  text-align: center;
}

.logo img {
  max-width: 160px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
}

form button,
#printBtn {
  width: 100%;
  padding: 12px;
  background: #dc3c3c;
  color: #fff;
  border: none;
  cursor: pointer;
}

#printBtn {
  display: none;
  margin-top: 10px;
}

.profile img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.badges {
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin: 4px;
}

/* STATUS BADGES */
.status-active { background:#e6f4ea; color:#1e7e34; }
.status-suspended { background:#fff3cd; color:#856404; }
.status-revoked { background:#f8d7da; color:#842029; }
.status-expired { background:#e2e3e5; color:#41464b; }
.status-transferred { background:#e2e3ff; color:#2f2fa2; }

/* TYPE BADGES */
.type-employee { background:#e7f1ff; color:#084298; }
.type-intern { background:#e6f4ea; color:#1e7e34; }
.type-contractor { background:#fff3cd; color:#856404; }
.type-volunteer { background:#f8d7da; color:#842029; }

.info {
  text-align: left;
  font-size: 14px;
}

.disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 6px;
}

.footer {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}

@media print {
  form, #printBtn {
    display: none !important;
  }

  .verify-card {
    box-shadow: none;
    border: 1px solid #000;
  }

  .footer::after {
    content: "Printed verification – association only, not authorization";
    display: block;
    font-size: 10px;
    margin-top: 8px;
    color: #999;
  }
}
