.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
.modal-container {
	background: rgba(255, 255, 255, 0.98);
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	color: #fff;
	text-align: center;
	position: relative;
}
.modal-header {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}
.wallet-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.wallet-button {
	display: flex;
	align-items: center;
	background-color: rgb(0, 0, 0, 0.1);
	border: none;
	color: #1a1a1a;
	font-size: 16px;
	font-family: Manrope, sans-serif;
	padding: 10px;
	width: 100%;
	text-align: left;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}
.wallet-button:hover {
	background-color: rgb(0, 0, 0, 0.2);
}
.wallet-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
