.vlookup-btn { font-size: 8px; padding: 1px 6px; border-radius: 3px; border: 1px solid var(--green); background: var(--green-pale, #eaf4ee); color: var(--green); cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 500; margin-left: 4px; vertical-align: middle; }
.vlookup-btn:hover { background: var(--green); color: white; }
.vl-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 300; align-items: center; justify-content: center; padding: 20px; }
.vl-overlay.open { display: flex; }
.vl-box { background: white; border-radius: 12px; max-width: 500px; width: 100%; max-height: 80vh; display: flex; flex-direction: column; overflow: hidden; }
[data-theme="dark"] .vl-box { background: #1a1d24; }
.vl-header { padding: 16px 20px 12px; border-bottom: 1px solid var(--border); }
.vl-header h3 { font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.vl-search { width: 100%; font-family: 'DM Sans', sans-serif; font-size: 12px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px; outline: none; background: var(--surface); color: var(--slate); }
.vl-search:focus { border-color: var(--green); }
.vl-body { flex: 1; overflow-y: auto; padding: 8px; }
.vl-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 6px; cursor: pointer; transition: background 0.1s; }
.vl-item:hover { background: var(--green-pale, #eaf4ee); }
.vl-item-left { flex: 1; min-width: 0; }
.vl-item-name { font-size: 12px; font-weight: 500; }
.vl-item-meta { font-size: 10px; color: var(--slate-light); margin-top: 1px; }
.vl-item-price { font-family: 'DM Mono', monospace; font-size: 14px; font-weight: 500; color: var(--green); white-space: nowrap; margin-left: 12px; }
.vl-footer { padding: 10px 20px; border-top: 1px solid var(--border); text-align: right; }
.vl-close { font-size: 11px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 6px; background: none; cursor: pointer; font-family: 'DM Sans', sans-serif; color: var(--slate-mid); }
.vl-close:hover { background: var(--surface); }
