  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

  :root {
    --bg: #101010;
    --panel: #121212;
    --muted: #9aa0a6;
    --accent: #00f07a;
    --input-bg: #151515;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  body {
    background: var(--bg);
    color: #e9eef0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 10px;
    display: flex;
    justify-content: center;
    font-size: 16px;
  }

  .card {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
  }

  .label {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 10px;
    font-weight: 500;
  }

  .address-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--input-bg);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.02);
  }

  #targetAddr {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    color: #e9eef0;
    font-size: 16px;
    padding: 5px;
    min-width: 0;
    width: 100%;
  }

  .paste {
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
  }

  .small-icon {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    border: 0;
    padding: 3px;
    margin-top: -3px;
  }

  .amount-section {
    margin-top: 18px;
  }

  .amount-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--input-bg);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.02);
  }

  #amount {
    background: transparent;
    border: 0;
    outline: none;
    color: #e9eef0;
    font-size: 16px;
    font-weight: 400;
    flex: 1;
    padding: 4px;
    min-width: 0;
  }

  .token {
    color: var(--muted);
    font-weight: 500;
  }

  .max {
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
  }

  .usd-eq {
    color: var(--muted);
    margin-top: 12px;
    font-size: 15px;
  }

  input::-webkit-inner-spin-button,
  input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type=number] {
    -moz-appearance: textfield;
  }

 .next-btn{
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(180deg, var(--accent), #00d567);
    color: #00110a;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
  }

  .next-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }

  input, button {
    max-width: 100%;
    box-sizing: border-box;
  }