/* style.css */
.theme-wrapper {
	background-color: #f8f9fa;
	color: #212529;
	min-height: 100vh;
}

.profile-avatar {
	width: 120px;
	height: 120px;
	object-fit: cover;
}

.icon-wrapper {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.social-btn {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
}

.social-btn:hover {
	background-color: #e9ecef;
	transform: translateY(-2px);
}