/* =================================== */
/* calculator.css */
/* =================================== */

/* Calculator */
  .ze-calc-section { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:14px; padding:20px; margin-top:16px; margin-bottom:24px; }
  .ze-calc-title { font-size:11px; font-weight:700; color:rgba(255,255,255,0.5); letter-spacing:1.2px; text-transform:uppercase; margin-bottom:16px; }
  .ze-calc-inner { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:16px 20px; }
  .ze-calc-input-row { display:flex; align-items:center; gap:10px; margin-bottom:12px; font-size:14px; color:rgba(255,255,255,0.7); }
  .ze-calc-input { width:120px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:8px; padding:8px 12px; color:#fff; font-size:15px; font-weight:600; font-family:inherit; outline:none; transition:border-color 0.2s; text-align:center; -moz-appearance:textfield; }
  .ze-calc-input::-webkit-inner-spin-button, .ze-calc-input::-webkit-outer-spin-button { -webkit-appearance:none; margin:0; }
  .ze-calc-input:focus { border-color:#00E5AA; }
  .ze-calc-divider { height:1px; background:rgba(255,255,255,0.08); margin:12px 0; }
  .ze-calc-result-row { display:flex; justify-content:space-between; align-items:center; padding:5px 0; }
  .ze-calc-result-label { font-size:13px; color:rgba(255,255,255,0.55); }
  .ze-calc-result-value { font-size:13px; font-weight:600; color:#00E5AA; }
  .ze-calc-result-value.ze-negative { color:#ff6b8a; }
  .ze-calc-result-big { font-size:18px; font-weight:700; color:#00E5AA; }
  .ze-calc-result-row.ze-calc-total { padding-top:10px; margin-top:4px; border-top:1px solid rgba(255,255,255,0.1); }
  .ze-calc-yield-row { padding:4px 0; }
  .ze-calc-yield-value { font-size:12px; color:rgba(255,255,255,0.45); }
