
/* ==============================
   Leveling Page
   ============================== */

#leveling-page
{
	max-width:1200px;
	margin:40px auto;
	padding:20px;
}
/* Sections */

.level-box
{
	background:#1c1c1c;
	border:1px solid #444;
	border-radius:8px;
	padding:25px;
	margin-bottom:30px;
	box-shadow:0 4px 12px rgba(0,0,0,.25);
}

#leveling-page h1
{
	text-align:center;
	margin-bottom:15px;
}

#leveling-page h2
{
	margin-top:0;
	border-bottom:1px solid #444;
	padding-bottom:10px;
}

/* ==============================
   XP TABLE
   ============================== */


#xp-table
{
	width:100%;
	border-collapse:collapse;
	margin-top:15px;
}

#xp-table th
{
	background:#292929;
	padding:12px;
	text-align:center;
}

#xp-table td
{
	padding:10px;
	text-align:center;
	border-top:1px solid #333;
}

#xp-table tr:hover
{
	background:#252525;
}
/* ==============================
   XP GRAPH
   ============================== */
#xp-chart
{
	width:100%;
	min-height:450px;
	display:flex;
	justify-content:center;
	align-items:center;
}



#xp-chart svg
{
	max-width:100%;
	height:auto;
}
/* Tooltip */

.xp-tooltip
{
	display:none;
	position:absolute;
	background:#222;
	color:white;
	padding:10px;
	border:1px solid #d33;
	border-radius:5px;
	pointer-events:none;
	z-index:10;
	font-size:14px;
}
