<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.selected-filters {
    display: flex;
    flex-wrap: nowrap;         /* NÃ£o permite quebrar linha */
    overflow-x: auto;          /* Mostra barra de rolagem horizontal */
    max-width: 100%;           /* Ou um valor fixo, ex.: 400px */
    white-space: nowrap;       /* MantÃ©m tudo numa linha contÃ­nua */
    gap: 8px;
    padding: 5px;
    margin-top: 1rem;
    background-color: #363638;
    border: 1px solid gray;
    border-radius: 8px;
    box-sizing: border-box;
}

.selected-filters.leaderboard-selected-filters{
    justify-content: center;
}

/* Ãrea total da scrollbar (a "trilha") */
.selected-filters::-webkit-scrollbar {
    width: 8px;       /* Largura da barra (vertical) */
    height: 8px;      /* Altura da barra (horizontal) */
  }
  
  /* Trilha da scrollbar (fundo) */
  .selected-filters::-webkit-scrollbar-track {
    background: #2e2e2e;  /* Cor do fundo da trilha */
  }
  
  /* "Polegar" (a parte que se move na barra) */
  .selected-filters::-webkit-scrollbar-thumb {
    background-color: #888; /* Cor do polegar */
    border-radius: 4px;     /* Arredondar cantos */
    border: 1px solid #555; /* Borda, se desejar */
  }
  
  /* Quando o mouse passa sobre o polegar */
  .selected-filters::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  


.filter-item {
    display: inline-flex;    /* Cada chip ocupa apenas o espaÃ§o necessÃ¡rio */
    align-items: center;
    font-size: 10px !important;
    gap: 4px;
    background: #444;
    color: #fff;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 0.9rem;
    white-space: nowrap;     /* Evita quebra dentro do chip */
    max-width: 100%;
}


/* Ãcone */
.filter-item i {
    font-size: 0.9rem;
}


/* Exemplo de estilo do botÃ£o Editar */
.edit-button {
    background-color: #ff3b3b; /* Vermelho ou outra cor que vocÃª queira em destaque */
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.edit-button:hover {
    background-color: #ff6b6b; /* Hover state */
}

/* Ajustes de Ã­cone FontAwesome */
.filter-item i {
    font-size: 1rem;
}

i.fa-solid.fa-trophy {
    margin-left: 10px;
}

.filters {
    display: flex;
    flex-wrap: wrap; /* Permite que os elementos quebrem para a linha de baixo */
    justify-content: center;
    margin-bottom: 30px;
    gap: 5px;
}

.filters select {
    flex: 1;
    min-width: 120px; 
    padding: 10px;
    font-size: 16px;
    background-color: #242424;
    border: 1px solid #898;
    color: var(--text-color);
    border-radius: 8px;
}
.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #242424 !important;
    padding: 7.5px 7.5px 3.75px;
    border-radius: 10px !important;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden;
}
.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #242424 !important;
    padding: 7.5px 7.5px 3.75px;
    border-radius: 10px !important;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden;
}
.choices {
    background-color: #242424; 
    color: #fff; 
}
.choices__list--dropdown {
    background-color: #242424; 
    border: 1px solid #898a8e;
}
.choices__list--dropdown .choices__item {
    color: #fff; 
    background-color: #242424; 
}
.choices__list--dropdown .choices__item--selectable {
    padding: 10px;
    background-color: #242424;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--button-background) !important; 
    color: var(--text-color-button) !important;
}
.choices__list--multiple .choices__item {
    background-color: #242424; 
    color: #fff;
    border: 1px solid #898a8e;
}
.choices__list--multiple .choices__item[data-deletable]::after {
    color: #ff5555; 
}
.choices__inner {
    background-color: #242424;
    color: #fff;
    border: 1px solid #898a8e;
}
.choices__input {
    color: #fff;
    background-color: #242424 !important;
}
.choices:last-child{
    margin-bottom: none !important;
}
.choices {
    margin-bottom: 0 !important; 
}
.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 7.5px;
    margin-bottom: 8px !important;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #242424;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    color: white;
}
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 10%;
}
.checkbox-group label {
    display: block;
    padding: 5px 0;
}
.checkbox-container {
    max-height: 300px; 
    overflow-y: scroll; 
    margin-bottom: 20px; 
}

.checkbox-group label {
    display: block; 
    margin-bottom: 5px; 
}
.search-input {
    width: 100%; 
    padding: 8px;
    background: #242424;
    border: 1px solid gray;
    border-radius: 8px;
    color: white;
    margin-bottom: 10px; 
    box-sizing: border-box; 
}
.btn-leaderboard {
    border-radius: 8px;
    background: var(--button-background);
    width: 100%;
}
.btn-leaderboard-2 {
    border-radius: 8px;
    background: var(--button-background);
    width: 15%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    align-items: start; /* Alinha os cards ao topo da linha */
}
@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.player-card-leaderboard {
    background: var(--cards-background);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    /* width: calc(33.333% - 20px); */
    display: flex;
    flex-direction: column;
    text-align: left;
}
@media (max-width: 768px) {
    .filters {
        display: block;
        flex-direction: column; 
        align-items: center;
    }
    .filters select {
        width: 100%; 
    }
    .choices {
        margin-bottom: 10px !important;
    }
    .btn-leaderboard {
        width: 30%;
        background: var(--button-background);
    }
    .btn-leaderboard-2 {
        width: 30%;
        background: var(--button-background);
    }
}
/* @media (min-width: 992px) and (max-width: 1210px) {
    .player-card-leaderboard {
        width: calc(50% - 20px);
    }
} */
@media (min-width: 769px) {
    .btn-leaderboard-2 {
        margin-left: 15px;
    }
}
@media (max-width: 991px) {
    .player-card-leaderboard {
        width: 100%;
    }
}
.title-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-weight: bold;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
}

.nav-btn:disabled {
    color: grey;
    cursor: not-allowed;
}

.nav-btn:hover:not(:disabled) {
    text-decoration: underline;
}
.player-img-leaderboard {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid gray;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    min-width: 22px; 
}
img.team-img-leaderboard {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.title-cards{
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 15px;
    border-bottom: 1px solid #838383;
}
.player-card-leaderboard table tr td:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
}
.player-card-leaderboard table tr td:last-child {
    text-align: right;
    padding-right: 10px;
    width: 10%;
}
td.value-badge {
    color: #66b22e;
}
td[onclick] {
    cursor: pointer;
}

.loading-overlay {
    position: fixed;        /* Fixa no viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo preto translÃºcido */
    z-index: 9999;          /* Fica acima de todo o conteÃºdo */
    display: flex;          /* Para centralizar o spinner */
    align-items: center;    
    justify-content: center;
  }
  
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;     /* Cor do anel */
    border-top: 6px solid #3498db; /* Cor que darÃ¡ o efeito de rotaÃ§Ã£o */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* AnimaÃ§Ã£o do spinner */
  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  

  .player-rank {
    display: inline-block;
    width: 24px;
    text-align: right;
  }
  
  </pre></body></html>