#players h1 {
	margin: 2em 0;
	font-size: 2.5rem;
}

.players-container {
	display: flex;
	flex-direction: row;
	/* height: 100vh; */
	text-align: left;
	align-items: flex-start;
	margin: auto;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 7em;
}

iframe {
	width: 100%;
	/* height: 100vh; */
	min-height: 400px;
	height: 800px;
	border: 0;
}

.tabcontent p {
	line-height: 1.5;
}

.tabcontent .list-name {
	margin: 1rem 0 0.5rem;
	font-weight: bold;
	text-decoration: underline;
}

.tabcontent .subcategories {
	font-weight: bold;
}

.tabcontent li {
	margin: 1rem 0;
	line-height: 1.5;
}

.tabcontent .indent-info {
	margin-left: 1.5rem;
}

.btn-container {
	display: flex;
	text-align: center;
	gap: 1.5rem;
	margin: 2rem 0;
}

.callout {
	background: #71a875;
	color: var(--secondary-color);
	padding: 2rem;
	margin-bottom: 2em;
}

.callout p {
	line-height: 1.5em;
	margin-bottom: 1em;
}

.callout a {
	color: #fff;
}

.load-warning {
	font-weight: bold;
	letter-spacing: 0.5px;
}

.link-button {
	font-weight: bold;
	text-decoration: underline;
	transition: transform 0.2s ease;
	display: inline-block;
}

.link-button:hover {
	cursor: pointer;
	transform: translateX(5px); /* block doesn't work well for inline elements */
}

.link-button::after {
	content: " →"; /* Unicode arrow */
	font-weight: bold;
}

@media (max-width: 800px) {
	.btn-container {
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	#players h1 {
		margin: 2em 0 1em;
	}
}