/* Publication tabs styling */
.pub-tabs {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.pub-tab-btn {
	padding: 10px 25px;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	transition: all 0.3s ease;
}

.pub-tab-btn:hover {
	border-color: #999;
	color: #333;
}

.pub-tab-btn.active {
	background: #333;
	border-color: #333;
	color: #fff;
}

.pub-tab-panel {
	display: none;
}

.pub-tab-panel.active {
	display: block;
}
