/* ================= RANKING MODAL ================= */

.ranking-box{
    max-width: 800px;
    width: 90%;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* tabs */
.rank-tabs{
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.rank-tabs button{
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    background: #222;
    color: #fff;
    border-radius: 5px;
    transition: 0.2s;
}

.rank-tabs button:hover{
    background: gold;
    color: black;
}

/* content scroll */
.ranking-content{
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}

/* scrollbar style */
.ranking-content::-webkit-scrollbar{
    width: 6px;
}

.ranking-content::-webkit-scrollbar-thumb{
    background: gold;
    border-radius: 10px;
}

/* TOP 1 CROWN EFFECT */
.ranking-content table tr:first-child td:first-child{
    color: gold;
    font-weight: bold;
}