/* ===== Veritrust: demo_did page add-on ===== */

.vt-body { background: #fff; color: #0b1b2b; }

/* Header */
.vt-header { background: #0b2a4a; color: #fff; }
.vt-header__wrap { display:flex; align-items:center; justify-content:space-between; padding:14px 20px; }
.vt-brand { display:flex; align-items:center; gap:10px; text-decoration:none; color:#fff; }
.vt-brand__logo { height:36px; width:auto; }
.vt-brand__name { font-weight:700; letter-spacing:.2px; }
.vt-nav { display:flex; gap:10px; }
.vt-nav__link { color:#cfe7ff; text-decoration:none; padding:8px 10px; border-radius:8px; }
.vt-nav__link:hover { color:#fff; background:rgba(255,255,255,.08); }
.vt-nav__link--active { color:#fff; font-weight:600; box-shadow: inset 0 -2px 0 #5da0ff; }

/* Containers */
.vt-container { max-width:1100px; margin:0 auto; padding:0 20px; }

/* Hero */
.vt-hero { background:#f6f8fb; border-bottom:1px solid #e5eaf0; padding:36px 0; }
.vt-hero__title { margin:0 0 8px; font-size:28px; color:#0b2a4a; }
.vt-hero__subtitle { margin:0 0 16px; color:#334a62; }
.vt-actions { display:flex; gap:12px; align-items:center; }

/* Buttons & status */
.vt-btn { appearance:none; border:0; padding:12px 18px; border-radius:12px; font-weight:700; cursor:pointer; }
.vt-btn--primary { background:#0b66ff; color:#fff; }
.vt-btn--primary:disabled { opacity:.6; cursor:not-allowed; }
.vt-status { color:#556b86; min-height:24px; }

/* Main layout */
.vt-main { padding:24px 0 40px; }
.vt-grid { display:grid; gap:20px; }
.vt-grid--2 { grid-template-columns:1fr; }
@media (min-width: 960px) { .vt-grid--2 { grid-template-columns:1fr 1fr; } }

/* Cards */
.vt-card { background:#fff; border:1px solid #e5eaf0; border-radius:14px; box-shadow:0 2px 10px rgba(0,0,0,.03); }
.vt-card__header { padding:14px 16px; border-bottom:1px solid #eef2f6; }
.vt-card__title { margin:0; font-size:18px; color:#0b2a4a; }
.vt-card__body { padding:16px; }

/* Definition list */
.vt-kv { display:grid; grid-template-columns:190px 1fr; gap:8px 14px; margin:0; }
.vt-kv dt { color:#60748e; }
.vt-kv dd { margin:0; }

/* Details & code */
.vt-details { margin-top:14px; }
.vt-details__summary { cursor:pointer; color:#0b2a4a; font-weight:600; }
.vt-code { position:relative; }
.vt-pre { background:#0b1120; color:#dbeafe; padding:12px; border-radius:10px; font-size:13px; overflow:auto; }
.vt-copy { position:absolute; top:8px; right:8px; font-size:12px; border:1px solid #c7d7ee; background:#fff; color:#0b2a4a; padding:6px 8px; border-radius:10px; cursor:pointer; }

/* Badges */
.vt-badge { display:inline-block; padding:4px 8px; border-radius:999px; font-size:12px; line-height:1; }
.vt-badge--ok { background:#e8f7ef; color:#0b7a43; border:1px solid #b8ebce; }
.vt-badge--err { background:#fdecec; color:#b3261e; border:1px solid #f6c2c0; }
.vt-badge--neutral { background:#eef3fb; color:#294c86; border:1px solid #d3def6; }

/* Footer */
.vt-footer { background:#0b2a4a; color:#bcd3ee; margin-top:40px; }
.vt-footer__wrap { display:flex; justify-content:space-between; align-items:center; padding:18px 20px; gap:12px; }
.vt-footer__mark { height:24px; width:auto; opacity:.9; }
.vt-footer__copy { font-size:14px; }
.vt-footer__nav { display:flex; gap:12px; }
.vt-footer__link { color:#cfe7ff; text-decoration:none; }
.vt-footer__link:hover { color:#fff; }

/* Helpers */
.vt-muted { color:#5b6b7b; }
