.wallet-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  gap: 10px;
}

.wallet-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.wallet-button:hover {
  background-color: #45a049;
}

.connection-status {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

.wallet-error {
  color: #dc3545;
}

.wallet-success {
  color: #28a745;
}

.wallet-info {
  margin-top: 15px;
  padding: 10px;
  background-color: #e9ecef;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
}

.wallet-address {
  font-family: monospace;
  word-break: break-all;
  background-color: #f8f9fa;
  padding: 5px;
  border-radius: 3px;
  margin-top: 5px;
}

#connect-wallet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#connect-wallet-button:hover {
  background-color: #0069d9;
}

#wallet-connection-status {
  margin-top: 10px;
  padding: 8px;
  border-radius: 4px;
  display: none;
} 