    #output {
      display: flex;
      gap: 24px;
      background-color: #092d57;
      padding: 10px 16px;
      font-family: sans-serif;
      color: white;
      font-size: 14px;
      overflow-x: auto;
      white-space: nowrap;
    }

    .coin-box {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .coin-box strong {
      color: white;
    }

    .coin-price {
      color: #f4d35e;
      font-weight: 600;
      margin-left: 4px;
    }

    .coin-change {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 500;
    }

    .coin-change.positive {
      color: #00cc66;
    }

    .coin-change.negative {
      color: #ff4d4f;
    }