Template:Tabs/styles.css

Template page
.tabs-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	color: #F7A71B;
	justify-content: center;
}

/* Drop any accidenmtal <p> tags generated from line breaks
in the wikitext */
.tabs-container > p {
    display: none;
}

.tab-wrapper {
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #F7A71B;
    align-self: center;
    text-align: center;
}

.tab-selected {
	background-color: #F7A71B;
	color: black;
	font-weight: 800;
}

.tab-selected, .tab-wrapper a {
	padding: 0.5rem 1rem 0.5rem 1rem;
	display: block;
}