.table-container {
    max-height: 80vh;
    overflow-y: auto;
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
}

.rank-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #FFF; /* Cor de fundo para o cabeçalho */
}

.rank-table tbody td:first-child,
.rank-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    background-color: #fff; /* Cor de fundo para a primeira coluna */
}

.rank-table thead th:first-child {
    z-index: 4;
    background-color: #fff; /* Cor de fundo para o cabeçalho da primeira coluna */
}


.table > :not(caption) > * > * {
    padding: .2em .4em !important;
    text-align: center;
}

.not-logged-in {
    filter: blur(5px); /* Ajuste o valor de blur conforme necessário */
    display: flex;
    justify-content: center;
    align-items: center;
}

.not-logged-in:hover {
    cursor: not-allowed;
}