/* Leaderboard Column Styling */
.leaderboard-col {
	display: none;
	max-width: 450px;
	margin: 0;
	background: #dfcfb0;
	background-image: radial-gradient(#eadcb9 30%, #c8ad7f 100%);
	padding: 20px;
	border-radius: 12px;
	border: 4px double #5d4037;
	box-shadow: 0 10px 25px rgba(0,0,0,0.4);
	text-align: left;
	font-family: 'MedievalSharp', serif;
	color: #3e2723;
}

.leaderboard-col h3 {
	font-family: 'Pirata One', serif;
	font-size: 28px;
	color: #8c281f;
	border-bottom: 2px solid rgba(93, 64, 55, 0.3);
	padding-bottom: 6px;
	margin-top: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
	text-align: center;
}

/* Leaderboard & Stats Table Cleanup */
.leaderboard-col table,
.multiplayer-stats-table-wrapper table {
	color: #3e2723;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 5px;
	border: none !important;
	margin: 0;
}

.multiplayer-stats-table-wrapper table {
	border-spacing: 0 10px;
	margin-bottom: 0;
}

.leaderboard-col thead tr,
.multiplayer-stats-table-wrapper thead tr {
	color: #5d4037;
	font-family: 'MedievalSharp', serif;
	font-weight: bold !important;
	font-size: 16px;
	border: none !important;
	text-align: center;
}

.multiplayer-stats-table-wrapper thead tr {
	font-size: 18px;
}

.leaderboard-col th,
.multiplayer-stats-table-wrapper th {
	padding: 5px;
	border: none !important;
	font-weight: bold !important;
	text-align: center;
}

.multiplayer-stats-table-wrapper th {
	padding: 10px;
}

.leaderboard-col th:first-child,
.multiplayer-stats-table-wrapper th:first-child {
	text-align: left;
}

.leaderboard-col th:last-child,
.multiplayer-stats-table-wrapper th:last-child {
	text-align: right;
}

/* Leaderboard Table Row & Cells */
.leaderboard-row {
	border: none !important;
	font-size: 16px;
}

.leaderboard-cell {
	padding: 7px 10px;
	vertical-align: middle !important;
	line-height: 1;
	border: none !important;
	color: #2a1a15 !important;
}

.leaderboard-rank {
	font-family: 'MedievalSharp', serif;
	font-weight: bold !important;
	font-size: 1.2rem;
	vertical-align: middle !important;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.leaderboard-name {
	font-family: 'Pirata One', serif;
	font-size: 1.7rem;
	vertical-align: middle;
	text-align: center;
}

.leaderboard-time {
	font-family: 'MedievalSharp', serif;
	font-weight: bold !important;
	font-size: 1.2rem;
	vertical-align: middle !important;
	text-align: right;
}

.leaderboard-days {
	font-family: 'MedievalSharp', serif;
	font-weight: bold !important;
	font-size: 1.2rem;
	vertical-align: middle !important;
	text-align: right;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.multiplayer-stats-table-wrapper .leaderboard-time {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* Custom Rustic Medieval Button Styling */
.rustic-btn {
	background: linear-gradient(135deg, #8c281f, #5d1a15) !important;
	border: 2px solid #3e2723 !important;
	border-radius: 4px !important;
	color: #ffeb3b !important;
	font-family: 'Pirata One', serif !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 8px 20px !important;
	font-weight: normal !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	display: inline-block;
}

.rustic-btn:hover {
	background: linear-gradient(135deg, #a63026, #73150f) !important;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
	transform: translateY(-1px);
	color: #fff !important;
}

.rustic-btn:active {
	transform: translateY(1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}