:root {
	--pi-purple: #9d31f0;
	--pi-dark: #3a3b43;
	--pi-light: #f4f5f9;
	--pi-white: #ffffff;
	--font-family: 'Segoe UI', Arial, sans-serif;
}
.kyb-total {
	font-size: 1.6em;
	font-weight: 700;
	text-align: center;
	margin-bottom: 25px;
	color: var(--pi-dark);
}
 .nokyb-total {
	font-size: 1.1em;
	font-weight: 500;
	text-align: center;
	margin-bottom: 25px;
	color: var(--pi-dark);
}
#wallet-display {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 20px;
}
.wallet-item {
	background-color: var(--pi-light);
	border-radius: 8px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-left: 5px solid var(--pi-purple);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	position: relative;
}
.wallet-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.wallet-item h3 {
	margin: 0;
	font-size: 1.2em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
	color: var(--pi-dark);
}
.tag {
	background-color: var(--pi-purple);
	color: var(--pi-white);
	padding: 4px 10px;
	border-radius: 15px;
	font-size: 0.8em;
	font-weight: 500;
}
.wallet-address {
	font-size: 0.9em;
	color: #777;
	margin-bottom: 15px;
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.balance-info {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1.1em;
	font-weight: bold;
}
.balance-value {
	color: var(--pi-dark);
	font-size: 1.2em;
}
.deposit-change {
	font-size: 0.9em;
	font-weight: normal;
	display: flex;
	align-items: center;
}
.change-up { color: #28a745; }
.change-down { color: #dc3545; }
.change-neutral { color: #6c757d; }
.progress-bar {
	width: 100%;
	height: 5px;
	background-color: #ddd;
	margin-top: 20px;
	border-radius: 5px;
}
.progress {
	height: 100%;
	background-color: var(--pi-purple);
	width: 0%;
	transition: width 0.5s ease-in-out;
}