.container {
	max-width: 800px;
	margin: 0 auto;
	background-color: #2c303a;
	border-radius: 8px;
	
	padding: 20px;
}
h2 {        
	text-align: center;
}
.ranking-table {
	width: 100%;
	border-collapse: collapse;
	font-size:0.85rem;
	vertical-align:middle;
}
.ranking-table th, .ranking-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #333;
}
.ranking-table th {
	background-color: #444857;
	font-weight: bold;
	color: #e9e9e9;
}
.ranking-table tr:hover {
	background-color: #2c2c2c;
}
.rank {
	font-weight: bold;
	/* color: #03dac6; */
}
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.pagination a {
	color: #ddd;
	padding: 2px 8px;
	text-decoration: none;
	transition: background-color .3s;
	border: 1px solid #333;
	margin: 0 4px;
	font-size:0.85rem;
}
.pagination a.active {
	background-color: #717790;
	color: #fff;
	border: 1px solid #747474;
}
.pagination a:hover:not(.active) {
	background-color: #717790;
}

.top-rank {
	font-size: 0.85rem;
}

/*
.top-rank-1 { color: #ffd700; }
.top-rank-2 { color: #c0c0c0; }
.top-rank-3 { color: #cd7f32; }
*/

.last-updated {
	text-align: center;
	color: #ddd;
	font-style: italic;
	margin-bottom: 20px;
	font-size:0.7rem;
}
table td a {
	text-decoration:none;
	color:#eee;
}
table td a:hover {
	color:#fff;
}

.profile_image {
	width:20px;
	height:20px;
	border-radius:50%;
}

.profile-image {
	vertical-align: middle; /* 이미지와 텍스트를 중간에 맞춤 */
	margin-right: 10px; /* 이미지와 텍스트 사이에 여백 추가 */
}

 @media screen and (max-width: 600px) {
	.ranking-table, .ranking-table tbody, .ranking-table tr, .ranking-table td {
		display: block;
	}
	.ranking-table thead {
		display: none;
	}
	.ranking-table tr {
		margin-bottom: 15px;
		border: 1px solid #444;
		border-radius: 5px;
		padding: 10px;
	}
	.ranking-table td {
		text-align: right;
		padding-left: 50%;
		position: relative;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.ranking-table td::before {
		content: attr(data-label);
		position: absolute;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		font-weight: bold;
		text-align: left;
	}
}