.vsd-906 .vsd-element.vsd-element-d9a3d0d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .vsd-element-962ca62 */:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --line:#e7ecf3;
  --accent:#4f7cff;
  --accent-soft:#eef2ff;
  --accent2:#9fb7ff;
  --text:#0f172a;
  --muted:#64748b;
  --r:18px;
  --focus:0 0 0 3px rgba(79,124,255,.14);

  /* text-only semantic colors */
  --pos-text:#047857;
  --neg-text:#b91c1c;
}

/* base */

.btcv-wrap{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  padding:28px;
  color:var(--text);
}

.btcv-card{
  max-width:980px;
  margin:auto;
  background:var(--card);
  border-radius:24px;
  box-shadow:0 30px 80px rgba(15,23,42,.08);
  overflow:hidden;
}

/* hero */

.btcv-hero{
  position:relative;
  padding:34px 32px 28px;
  background:linear-gradient(180deg,rgba(79,124,255,.12),rgba(79,124,255,0));
}

.btcv-badge{
  position:absolute;
  top:16px;
  right:18px;
  background:var(--accent-soft);
  color:#3b4cff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:600;
  white-space:nowrap;
}

.btcv-title{
  font-size:26px;
  font-weight:700;
  margin:0;
}

.btcv-sub{
  color:var(--muted);
  margin-top:6px;
  font-size:14px;
}

/* grid */

.btcv-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  padding:26px;
  align-items:stretch;
}

@media(max-width:880px){
  .btcv-grid{grid-template-columns:1fr}
}

/* panels */

.btcv-panel{
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:20px;
  background:#fff;
  display:flex;
  flex-direction:column;
}

.btcv-panel h4{
  margin:0 0 14px 0;
  font-size:15px;
  color:var(--text);
}

/* form */

.btcv-form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.btcv-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.btcv-field.full{grid-column:1/-1;}
.btcv-field.combo{grid-column:1/-1;}

.btcv-field label{
  font-size:12px;
  color:var(--muted);
}

.btcv-field input,
.btcv-field select{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  font-size:14px;
  outline:none;
  background:#fff;
  color:var(--text);
  transition:border-color .15s ease, box-shadow .15s ease;
  min-width:0;
}

.btcv-field input::placeholder{color:#94a3b8;}

.btcv-field input:focus,
.btcv-field select:focus{
  border-color:var(--accent);
  box-shadow:var(--focus);
}

/* combo fields */

.btcv-combo{
  display:grid;
  gap:8px;
  align-items:center;
  min-width:0;
}

.btcv-combo > *{min-width:0;}

.btcv-field.combo .btcv-combo{
  grid-template-columns:1fr 96px;
}

.btcv-field.full .btcv-combo{
  grid-template-columns:48px minmax(0,1fr);
}

/* currency flag */

.btcv-currency-flag{
  width:44px;
  height:32px;
  min-width:44px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  display:block;
}

/* actions */

.btcv-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.btcv-btn{
  border:none;
  border-radius:999px;
  padding:12px 20px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .08s ease, background .15s ease;
}

.btcv-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(79,124,255,.25);
}

.btcv-btn.secondary{
  background:var(--accent-soft);
  color:#3b4cff;
}

.btcv-btn.secondary:hover{
  box-shadow:0 6px 18px rgba(79,124,255,.12);
}

/* results */

.btcv-panel:last-child h4{
  font-size:17px;
  font-weight:700;
}

.btcv-kpis{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:stretch;
}

@media(max-width:520px){
  .btcv-kpis{grid-template-columns:1fr}
}

/* hard locked cards – stable UI */

.btcv-kpi{
  height:120px;
  padding:18px;
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff,#f7f9ff);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.btcv-profit{
  height:110px;
  margin-top:16px;
  padding:20px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(79,124,255,.10),rgba(159,183,255,.18));
  border:1px solid #dfe6ff;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* labels – ONLY direct child label spans */

.btcv-kpi > span{
  display:block;
  height:34px;
  line-height:1.25;
  font-size:14px;
  color:var(--muted);
  overflow:hidden;
}

.btcv-profit > span{
  display:block;
  height:28px;
  line-height:1.25;
  font-size:14px;
  color:var(--muted);
  overflow:hidden;
}

/* values – unified size (same as profit), fixed row */

.btcv-kpi strong,
.btcv-profit strong{
  margin-top:8px;
  height:40px;
  line-height:40px;
  font-size:1.35rem;
  font-weight:800;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  font-variant-numeric:tabular-nums;
  display:flex;
  align-items:center;
  gap:6px;
}

/* inner spans follow strong */

.btcv-kpi strong span,
.btcv-profit strong span{
  font-size:inherit;
  line-height:inherit;
  font-weight:inherit;
}

/* empty */

.btcv-panel [data-out]{
  color:#94a3b8;
}

/* semantic states – text only */

.btcv-kpi.is-positive strong,
.btcv-profit.is-positive strong{
  color:var(--pos-text);
}

.btcv-kpi.is-negative strong,
.btcv-profit.is-negative strong{
  color:var(--neg-text);
}

/* footer */

.btcv-footer{
  padding:18px 26px;
  border-top:1px solid var(--line);
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  color:var(--muted);
}

@media(max-width:620px){
  .btcv-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
}/* End custom CSS */