.HighScoreSubmitInput{
	color: #C9C9C9;
	font-family: Baloo-Regular;
	font-size: 25px;
	user-select: none;
	text-align: center;
	padding: 10px;
	border: 2px solid #653423;
	border-radius: 10px;
	background: #ECECEC;
	z-index: 999;
}
.HighScoreSubmitInput:focus {
    outline: none;
}
.HighScoreSubmitInput::placeholder {
	color: #C9C9C9;
	opacity: 0.7;
    font-size: 25px;
}


.table-container {
	width: 100%; /* Tablo genişliği (örnekte tam sayfa genişliği için % olarak ayarlanmıştır) */
	max-height: 100%; /* Tablonun maksimum yüksekliği */
	overflow-y: auto; /* Dikey scroll bar'ı görünür yap */
    scrollbar-width: none; /* Firefox'ta scroll bar'ı gizler */
	-webkit-overflow-scrolling: touch;
}
.table-container::-webkit-scrollbar {
    width: 0; /* Chrome, Safari, Opera'ta scroll bar genişliğini sıfıra ayarlar */
}

.leaderboard-results{ 
	font-family: Metropolis-Bold, sans-serif; 
	font-weight: bold;
	border-collapse: collapse; 
	width: 100%;
}
.leaderboard-results thead{ display: none; }
.leaderboard-results tbody td{
	height: 50px;
	text-align: center;
	padding: 5px;
	font-size: 16px;
	font-weight: bold;
}

.leaderboard-results tr {
	background-color: #fff;
	border-radius: 35px;
	display: flex;
	margin: 10px;
	color: #000;
	justify-content: center;
	align-items: center;
}

.leaderboard-results td {
	border: 1px solid transparent;
	padding: 0; /* Hücre içi doldurmayı kaldır */
    margin: 0; /* Kenar boşluklarını kaldır */
    display: flex; /* Hücre içeriğini dikey ve yatay olarak ortala */
    align-items: center; /* Dikey olarak ortala */
    justify-content: center; /* Yatay olarak ortala */
	width: 33.33%;
	text-align: center;
}

/* Mobil cihazlar */
@media (min-width: 768px) {
    .leaderboard-results {
		
    }
}