/* Modal background */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal box */
.modal {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  color: #fff;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal h2 {
  margin-bottom: 20px;
}

.wallet-option {
  padding: 12px 15px;
  margin: 10px 0;
  background: #2a2a2a;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.wallet-option:hover {
  background: #3a3a3a;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 18px;
  background: none;
  border: none;
  color: #fff;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
  padding: 12px;
  margin: 8px 0;
  background: #2a2a2a;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 16px;
  font-weight: 500;
}

.wallet-option:hover {
  background: #3a3a3a;
}

.wallet-logo {
  width: 24px;
  height: 24px;
}
