.nft-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
}

.nft-card {
  background: #fff;
  border-radius: 8px;
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  max-width: 200px;
}

.nft-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.nft-card p {
  margin: 5px 0 0;
  font-size: 14px;
}