.connect-wallet {
  cursor: pointer;
}
.modal-overlay {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.wallet-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-options button {
  background-color: black;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.wallet-options button:hover {
  background-color: rgb(32, 32, 32);
}

.wallet-options img {
  background-color: white;
  padding: 5px;
  border-radius: 6px;
  width: 40px;
  height: 40px;
}

#connectModal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  .modal {
    position: absolute;
    bottom: 0;
  }
}
