.ranking-wrap {
    padding: 1rem;
}

.ranking-type {
    display: flex;
    align-items: center;
    list-style: none;    
    margin: 0;
    padding: 1rem 0;      
}

.ranking-type li {
    position: relative;
    padding: 0 1rem; 
    font-size: 20px;
    cursor: pointer;   
}

.ranking-type li:first-of-type {
    padding-left: 0;
}

.ranking-type .active {
    font-weight: bold;
    font-size: 21px;
    color: var(--color-orange2);
}

.ranking-type li:not(:last-child)::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--color-gray3);
}

#ranking_select_menus {
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;  
}

#ranking_select_menus select {
    height: 36px;
    border: 1px solid var(--color-lightgray);       
}

#ranking_select_menus #server_select,
#ranking_select_menus #nation_select,
#ranking_select_menus #class_select {
    width: 100px;
}

#ranking_list_wrap {
    min-height: 800px;
}

#ranking_list_table {
    width: 100%;        
    border-collapse: collapse;
    text-align: center;
}

#ranking_list_table img {
    height: 100%;
    vertical-align: middle;
}

#ranking_list_table th {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray3);
    background: #E4E6EB;
    color: #6A6E76;
}

#ranking_list_table td {
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-lightgray);
}

#ranking_pagin {
    margin-top: 40px;        
}

#ranking_pagin ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#ranking_pagin ul .active {
    font-weight: bold;
    color: red;
}

#ranking_pagin ul li {
    cursor: pointer;
}