.tabs {
	display: flex;
	cursor: pointer;
}

.tab {
	padding: 10px 20px;
	background: #ccc;
	margin-right: 2px;
	border-radius: 10px 10px 0 0;
	font-weight: none;
	border-style: solid;
	border-width: 1px;
	border-color: black;
	border-bottom: none;
	font-size: 1rem;
}

.tab.active {
	background: lightyellow;
	border-bottom: none;
	font-weight: bold;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}