/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 24 2026 | 23:51:24 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }

  .card-header {
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

 .clear-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.18s;
  }
  .clear-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

 .field {
    display: grid;
    grid-template-columns: 1fr 72px;
    align-items: center;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
    transition: background 0.2s;
    position: relative;
  }
  .field:last-child { border-bottom: none; }
  .field.active { background: var(--accent-dim); }
  .field.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
  }

  .field-left { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }

  .field-label { display: flex; align-items: center; gap: 0.55rem; }

  .field-symbol {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 500;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
  }
  .field.active .field-symbol { background: var(--accent); color: var(--bg); }

  .field-name { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

  .field-input {
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 1.05rem;
    padding: 0.45rem 0.7rem;
    border-radius: 7px;
    width: 100%;
    transition: all 0.18s;
    outline: none;
  }
  .field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
  .field-input.computed { color: var(--accent); border-color: rgba(200,245,96,0.2); }
  .field-input::placeholder { color: var(--muted); font-size: 0.8rem; }

End of comment */ 

