.tab-header{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:10px;
}

.tab-header .single-tab{
	max-width: 280px;
	color: #fff;
	background: #111;
	width: auto;
	padding: 10px;
	font-size: 16px;
	text-align: center;
	line-height: 1em;
	transition: all 0.5s;
	cursor: pointer;
	border-style: solid;
	border-width: 1px;
	border-color: #fff;
}

.tab-header .single-tab.current, .tab-header .single-tab.current:hover{
	background-color: #fff;
	border-style: solid;
	color:#111;
	border-width: 1px;
	border-color: #484848;
}

.tab-header .single-tab:hover{
	background-color: #484848;
}