.desk_banner img{
	width:100%;
}

.pageheader{
	margin-top:200px;
	text-align:left;
}

.jackpotContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jackpotText {
    font-size: 40px;
    font-family: 'Arial Black', sans-serif;
    margin-bottom: -15px;
    background: #425878;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.jackpotTableContainer {
    width: 80%;
    margin: auto;
    max-width: 1200px;
    height: 510px;
    overflow-y: auto; 
    border: 1px solid #ccc; 
    position: relative; 
}

.jackpotAmount {
    font-size: 60px;
    font-family: 'Arial Black', sans-serif;
    margin-top: -15px;
    background: #425878;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.jackpotTable {
    width: 100%;
    border-collapse: collapse;
}

.jackpotTable thead {
    position: sticky; /* Stick thead to the top */
    top: 0; /* Position at the top of the container */
    z-index: 1; /* Ensure thead appears above tbody */
    background: #126e51;
}

.jackpotTable thead th {
    color: white;
    padding: 10px;
    font-size: 20px;
    font-family: 'Myriad Pro', sans-serif;
    text-align: center;
    box-sizing: border-box;
    
}

.jackpotTable tbody td {
    color: white;
    padding: 10px 0;
    font-size: 15px;
    font-family: 'Myriad Pro', sans-serif;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;

}

.jackpotTable tbody tr {
    border: solid;
    border-color: white;
    justify-content: space-evenly;
}


.jackpotTable thead th:nth-child(1),
.jackpotTable thead th:nth-child(2),
.jackpotTable thead th:nth-child(3) {
    width: 18%;
}


.jackpotTable thead th:nth-child(4),
.jackpotTable thead th:nth-child(5) {
    width: 23%;
}

/* Styling for top three rows */
.jackpotTable tbody tr:nth-child(-n+3) {
    background: linear-gradient(to bottom, #126e51, #0b3f2f);
    color: white;
}


/* Styling for rows after the top three */
.jackpotTable tbody tr:nth-child(n+4) {
    background-color: #7C7C7C;
    color: black;
}

.leaderboard-cont{
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    margin-top: 10px;
}

.playerContainer {
    display: flex;
    align-items: center;
    width: 80%;
    margin: auto;
    max-width: 1200px;
    background-color: #484848;
    padding: 10px 0;
    font-size: 15px;
    font-family: 'Myriad Pro', sans-serif;
    color: white;

}

.currentPlayerRanking {
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.currentPlayerRanking tbody{
    width: 100%;
}

.currentPlayerRanking tr{
    display: flex;
    justify-content: space-evenly;

}

.currentPlayerRanking td{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
}

.currentPlayerRanking td:nth-child(1),
.currentPlayerRanking td:nth-child(2),
.currentPlayerRanking td:nth-child(3) {
    width: 18%;
}


.currentPlayerRanking td:nth-child(4),
.currentPlayerRanking td:nth-child(5) {
    width: 23%;
}

.leaderboard-joinbtn {
    width: 12.7%;
}

.leaderboard-joinbtn button {
    width: 90%;
    padding: 15px;
    font-size: 16px;
    color: white;
    background: linear-gradient(to bottom, #126e51, #0b3f2f);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
}

.leaderboard-twobtn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
    column-gap: 10px;
}

.leaderboard-twobtn .totalbet-btn button{
    font-size: 16px;
    padding: 10px 30px;
    color: white;
    background: linear-gradient(to bottom, #126e51, #0b3f2f);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.leaderboard-twobtn .singlewin-btn button{
    font-size: 16px;
    padding: 10px 30px;
    color: white;
    background: linear-gradient(to bottom, #126e51, #0b3f2f);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tournament-rules {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    max-width: 1200px;
    height: auto;
    margin-top: 60px;
}

.title-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    background: #425878;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rule-info {
    font-size: 18px;
    max-width: 100%; /* Limit the width of the text */
    color: black;
    text-align: justify;
}

@media only screen and (max-width: 1023px) {
    .toptitle{
        display: none;
    }
    .jackpotContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 70px;
    }

    .jackpotText {
        margin-bottom: 10px;
    }

    .jackpotAmount {
        font-size: 24px;
    }

    .jackpotTableContainer {
        width: 99%;
        overflow-x: auto;
    }

    .jackpotTable thead tr th{
        font-size: 12px;
    }

    .jackpotTable tbody tr td{
        font-size: 11px;
    }

    .leaderboard-cont,
    .leaderboard-twobtn {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 20px;
    }

    .currentPlayerRanking td {
        display: flex;
        width: 30%;
        font-size: 11px;
       
    }

    .currentPlayerRanking td:nth-child(1),
    .currentPlayerRanking td:nth-child(2),
    .currentPlayerRanking td:nth-child(3) {
    width: 18%;
    }


    .currentPlayerRanking td:nth-child(4),
    .currentPlayerRanking td:nth-child(5) {
    width: 23%;
    }



   .currentPlayerRanking {
        width: 99%;
        margin: 0 auto;
        border-collapse: collapse;
    }

    .playerContainer {
        width: 98%;
        margin-left: 5px;
        white-space: nowrap;
    }

    .leaderboard-joinbtn button{
        width: 9vh;
        padding: 12px 0;
        font-size: 12px;
    }

    .leaderboard-twobtn .singlewin-btn button{
        font-size: 12px;
    }

    .leaderboard-twobtn .totalbet-btn button{
        font-size: 12px;
    }

    .tournament-rules {
        width: 90%;
        text-align: justify;
        margin-top: 20px;
    }

    .title-header{
        font-size: 20px;
    }

    .rule-info{
        font-size: 16px;
        height: auto;
        margin-bottom: 30px;
    }
    
}