@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
.textInput{
	background: linear-gradient(180deg, #feffff, #fff);
    border: 3px solid #015eea;
    border-radius: 16px;
    box-shadow: 0 15px 15px rgb(0 0 0 / 15%);
    height: 81px;
}

input{
	appearance: none
      background-color: none
      border: 1px solid $red
      line-height: 0
      font-size: 10px
      width: 100%
      display: block
      box-sizing: border-box
      padding: 10px 15px
      border-radius: 60px
      color: $red
      font-weight: 100
      letter-spacing: 0.01em
      position: relative
      z-index: 1
}
#inputtext{
	
	text-align:left;
	font-size: 20px;
}
.mainButtons{
	color: #fff;
    min-height: 56px;
    text-align: center;
    background: linear-gradient(180deg, #365cfe, #015eea);
    border: 2px solid #fff;
    border-radius: 30px;
    box-shadow: 0 15px 15px rgb(0 0 0 / 5%);
    height: 50px;
    margin:0;
    min-width: 150px;
    padding: 15px;
	transition: ease-in-out all 0.1s;
}
.mainButtons:active {
  background: linear-gradient(180deg, #365cfe, #01c1ea);
  transform: scale(0.9);
}
.forgetPasswordButton{
	color: #fff;
	border: 0;
	font-weight: 700;
	background: transparent;
    margin: 0;
	text-align:right;
}
.TopScoreInput{
	color: #333;
	text-align: center;
	font-family: 'Nunito', sans-serif;
	font-size: 24px;
	font-weight: 800;
	user-select: none;
	padding: 5px;

}
.TopScoreInput:focus {
    outline: none;
}
.TopScoreInput::placeholder {
	color: #333;
	opacity: 0.7;
    font-size: 20px;
}
.InputField{
	color: #333;
	text-align: left;
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	font-weight: 800;
	user-select: none;
	padding: 1px;
	outline: none;
	border: none;
}
.InputField::placeholder {
	font-family: 'Nunito', sans-serif;
    opacity: 0.3;
	font-size: 20px;
	font-weight: 800;
}

.Leaderboard{
	color: #eda245;
	cursor: default;
	text-align: left;
	font-family: 'Nunito', sans-serif;
	font-size: 18px;
	font-weight: 800;
	user-select: none;
	padding: 20px;
	border: 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.05);
	line-height: 25px;
	readonly: true;
}
.Leaderboard::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 5px;
	background-color: #133163;
	display: none;
}
.Leaderboard::-webkit-scrollbar
{
	width: 5px;
	border-radius: 5px;
	background-color: #133163;
	display: none;
}
.Leaderboard::-webkit-scrollbar-thumb
{
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #2555a8;
	display: none;
}
.Leaderboard:focus {
    outline: none;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}


.table-container {
	padding-bottom: 5px;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
	border-collapse: collapse;
	width: 100%; /* Tablo genişliği (örnekte tam sayfa genişliği için % olarak ayarlanmıştır) */
	max-height: 720px; /* Tablonun maksimum yüksekliği */
	overflow-y: auto; /* Dikey scroll bar'ı görünür yap */
    scrollbar-width: none; /* Firefox'ta scroll bar'ı gizler */
	/*background-color: #1a1a1a70;*/
}
.table-container::-webkit-scrollbar {
    width: 0; /* Chrome, Safari, Opera'ta scroll bar genişliğini sıfıra ayarlar */
}
.leaderboard-results{ 
	width: 100%;
	border-collapse: collapse;
	font-family: 'Vodafone', sans-serif; 
}

.leaderboard-results thead th{
	height: 50px;
	vertical-align: middle;
	text-align: center;
	padding: 4px 8px;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	/*background-color: #5055CB;
	border-bottom: 1px solid #686ef97d;*/
	
}

.leaderboard-results tbody td{
	height: 40px;
	text-align: center;
	padding: 5px 5px;
	font-size: 18px;
	font-weight: bold;
	border-top: 1px solid #8883;
}

.leaderboard-results tr {
	color: #fff;
}

@media only screen and (max-width: 768px) {
  .table-container {
	  max-height: 576px;
  }
}

