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

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

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

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

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

/* Keeps the sidebar in view when scrolling past long content on the right */
.sidebar-card {
	top: 2rem;
	z-index: 10;
}