* {
    /* Remove o azul ao clicar nos objetos */
    -webkit-tap-highlight-color: transparent; 
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    /* Remove os scrools */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    background-color: #000;
    color: #FFF;
    user-select: none;
    -webkit-user-select: none; /* Para navegadores baseados em Webkit, como o Safari */
    -moz-user-select: none; /* Para navegadores baseados em Gecko, como o Firefox */
    -ms-user-select: none; /* Para o Internet Explorer/Edge */
    background-image: url(https://futeleague.pt/images/website/background.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* ANIMAÇÃO ENTRE PÁGINAS */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Classe que ativa o fade in */
body.loaded {
    opacity: 1;
}
/* ANIMAÇÃO ENTRE PÁGINAS */ 

  
a { /* Remove o sublinhado dos links */
    text-decoration: none !important;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    color: white;
    z-index: 9;
    background-color: #191C24;
    /*
    background-image: url(../images/website/background.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    */
}
.navbar-left,
.navbar-center,
.navbar-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-left {
  justify-content: flex-start; /* Alinha à esquerda */
}
.navbar-center {
  justify-content: center; /* Alinha ao centro */
}
.navbar-right {
  justify-content: flex-end; /* Alinha à direita */
}
.texto-futeleague {
    margin-left: 5px;
    font-size: 18px;
}
.texto-futeleague a {
    color: #FFF;
}
.icone-menu {
    cursor: pointer;
    width: 32px;
    height: 32px;
}
.icone-menu:active {
    transform: scale(0.9); /* Reduz a escala do botão quando clicado */
}
.noti-menu {
    cursor: pointer;
    border: 0px solid #838ec1;
    width: 42px;
    height: 42px;
}
.noti-menu:active {
    transform: scale(0.9); /* Reduz a escala do botão quando clicado */
}
.content {
    padding: 20px;    
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center; /* Centraliza o conteúdo horizontalmente */
    display: flex; /* Torna a div um contêiner flex */
    flex-direction: column; /* Alinha os itens verticalmente */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
}
.befooter {
    position: fixed;
    bottom: 40px; /* Adicionado 'px' para especificar a unidade de medida */
    left: 0;
    right: 0;
    height: 25px; /* Adicionado 'px' para especificar a unidade de medida */
    background-color: rgba(139, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s ease;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: #191C24;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}
.lang{
    position: fixed;
    bottom: 0px; /* Ajuste a distância do fundo conforme necessário */
    left: 10px; /* Ajuste a distância da direita conforme necessário */
    padding: 5px; /* Espaçamento interno da div */
}
/* MENU ESQUERDA */
.sidenavE {
    width: 125px;
    height: calc(100% - 90px); /* 100% - Alturas do Nav e Footer */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: -125px; /* Stay at the left */
    margin-top: 50px; /* Distancia do topo */
    background-color: #191C24;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* MENU DIREITA */
.sidenavD {
    width: 100%;
    height: calc(100% - 90px); /* 100% - Alturas do Nav e Footer */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    right: -100%; /* Stay at the right */
    margin-top: 50px; /* Distancia do topo */
    background-color: #191C24;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* LINKS DO MENU E*/
.sidenavE a {
    background-color: none; /* Grey background color */
    color: white; /* Black text color */
    display: block; /* Make the links appear below each other */
    padding: 10px; /* Add some padding */
    text-decoration: none; /* Remove underline from links */
    border-radius: 5px;
    margin: 2px;
    text-align: center; /* Centralize o texto */
    border: 1px solid transparent;
}
.sidenavE a:hover {
    border: 1px solid #F0FFFF;
}
.sidenavE a.active {
    border: 1px solid #F0FFFF;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4); /* Sombra branca mais forte na parte inferior */
}
/* Estiliza inputs e selects para ficarem iguais */
input[type="text"], 
input[type="password"], 
input[type="email"], 
input[type="number"], 
input[type="tel"], 
input[type="url"], 
input[type="date"], 
input[type="time"], 
select {
    min-width: 50px;
    min-height: 30px;
    margin: 2px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    color: #202020;
    background-color: #f9f9f9;
}
/* Efeito de foco */
input:focus, 
select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
/* Botões semelhantes */
button, 
input[type="submit"], 
input[type="button"] {
    min-width: 50px;
    min-height: 35px;
    margin: 5px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #202020;
    background-color: #f9f9f9;
    cursor: pointer;
}
/* Efeito hover nos botões */
button:hover, 
input[type="submit"]:hover, 
input[type="button"]:hover {
    background-color: #383535;
}

.div_botoes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.botao-dia-jogo {
    background-color: #07100D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 3px 6px;
    width: 100px;
    height: 40px;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    font-size: 11px;
    box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 1);
    cursor: pointer;
}
.dia-jogo-ativo {
    box-shadow: inset 0 0 0 1px rgba(18, 124, 18, 0.5);  
    background-color: #1F442F;  
}
.dia-jogo-ativo:hover{
   background-color: rgba(18, 124, 18, 0.5);
}
.botao-dia-jogo .linha1 {
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.botao-dia-jogo .linha2 {
    font-size: 11px;
    text-align: center;
    color: #CFCFCF;
}
.botao-dia-jogo .icone {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-mudapos,
.bt-convoca,
.bt-desconvoca,
.bt-addconvidado,
.bt-remconvidado,
.bt-sempermissao,
.bt-limiteatingido,
.bt-wildcard {
    width: 105px;
    height: 50px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #FFF;
    cursor: pointer;
}
.bt-mudapos {
    background-color: #c66d19;
}
.bt-convoca {
    background-color: #113f1b;
}
.bt-desconvoca {
    background-color: #791F20;
}
.bt-addconvidado{
    background-color: #294060;
}
.bt-remconvidado{
    background-color: #791F20;
}
.bt-sempermissao{
    background-color: #781693;
}
.bt-limiteatingido{
    background-color: #d60510; 
}
.bt-wildcard{
    background-color: #c49e13;
}
.bt-wildcard-vermelho{
    background-color: #791F20;
}
/* CORES DE FUNDOS */
.sem-nada{
    background-color: transparent !important;
    border: none !important;
}
.medalhas{
    background-color: transparent !important;
    border: none !important;
    color: #FFF !important;
    min-width: 20px !important;
    min-height: 20px !important;
    margin: 2px !important;
    padding: 0px !important;
}
.fundo-transparente{
    background-color: transparent !important;
    color: #000 !important;
}
.fundo-azul{
    background-color: #1A355B !important;
    color: #FFF !important;
}
.fundo-verde {
    background-color: #113f1b !important;
    color: #FFF !important;
}
.fundo-vermelho {
    background-color: #791F20 !important;
    color: #FFF !important;
}
.fundo-laranja {
    background-color: #c66d19 !important;
    color: #FFF !important;
}
.fundo-cinza {
    background-color: #5C5C5C !important;
    color: #FFF !important;
}
.fundo-select {
    background-color: #1A355B !important;
    color: #FFF !important;
}

/* CORES DE BORDAS */
.borda-branca{
    border: 1px solid #FFF !important;
    color: #FFF !important;
}
.borda-dourada{
    border: 1px solid gold !important;
    color: #FFF !important;
}
/* CORES DE TEXTO */
.texto-branco{
   color: #FFF !important;
}
/*  FIM DEFAULT BASIC WEBSITE */
.sidenavE_FundoFotoPerfil{
    background-image: url(https://futeleague.pt/images/website/templateMENU.png);
    background-size:100% 100%;
}
.sidenavE_FotoPerfil{
    width: 100px;
	height: 100px;
    border-radius: 100%;   
}
.sidenavE_FotoPerfil_Premium {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(120deg, #b8860b, #ffd700, #fff8dc, #ffd700, #b8860b) border-box;
}
.colocar_desempenho td {
    padding: 10px; /* Ajuste o valor conforme necessário */
}   
.brilhobranco {
    border: 1px solid #FFF; /* Define a borda dourada */
    animation: brilhobranco 2s infinite alternate; /* Aplica a animação */
}
@keyframes brilhobranco {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.8); /* Mantém um brilho mínimo */
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 1); /* Brilho máximo */
    }
}



/* NOVO IMAGEM PERFIL */
.div-img-jogador {
  position: relative;
  width: 200px;
  height: 280px;
}
.div-fotoJogador {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div-fotoJogador img {
    width: 175px;
    height: 220px;
    border-radius: 15px;
    z-index: 0;
}
.div-fotoBorder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.b-normal {
    background-image: url('https://futeleague.pt/images/website/BorderNormal.png');
}
.b-premium {
    background-image: url('https://futeleague.pt/images/website/BorderPremium.png');
}
/* NOVO IMAGEM PERFIL */
.infoj {
    border-collapse: collapse; /* Remove o espaço entre bordas das células */
    width: 100%; /* Ajusta a tabela para ocupar toda a largura disponível */
}
.infoj td, .infoj th {
    color: white;
    padding: 6px 4px;	
    font-size: 10px;	
    letter-spacing: .1em;	
    text-transform: uppercase;
}
.infop {
    width: 100%; /* Defina a largura da tabela conforme necessário */
    border-collapse: collapse; /* Para mesclar as bordas das células */
}
.e {
    width: 50%;
    text-align: right;
    padding-right: 2px;
    height: 25px;
    font-weight: bold;
    color: #EEE;
}
.d {
    width: 50%;
    text-align: left;
    padding-left: 2px;
    height: 25px;
    color: #838ec1;
}
.c {
    width: 50%;
    text-align: center;
    padding-left: 2px;
    padding-right: 2px;
    height: 25px;
}
/* TABELA DEFAULT */
/* Estilos gerais para a tabela */
.tabela-default {
    background-color: #f9f9f9; /* Cor de fundo suave */
    color: #000;    
    width: 100%;
    border-collapse: collapse; /* Remove espaçamento entre as células */
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
/* Estilo das cabeçalhos da tabela */
.tabela-default th {
    background-color: #1a355b; /* Azul escuro */
    color: #FFF;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
}
/* Estilo das células */
.tabela-default td {
    text-align: center;	
    padding: 2px;	
    font-size: 10px;	
    font-weight: bold;
    letter-spacing: .1em;	
    border-top: 1px solid #212330;	
}
/* Efeito de hover nas linhas */
.tabela-default tr:hover {
    background-color: #f1f1f1; /* Destaque quando passar o mouse */
}
/* Estilo da linha de destaque (jogador em primeiro) */
.tabela-default .melhor-jogador {
  background-color: rgba(144, 238, 144, 0.8); /* Verde claro com 80% de opacidade */
  font-weight: bold;
}

/* Estilo da linha de destaque (jogador próprio) */
.tabela-default .id-jogador {
  background-color: rgba(100, 180, 255, 0.8); /* Azul claro com 80% de opacidade */
  font-weight: bold;
}

/* Cantos redondos nas imagens */
.tabela-default img{
    border-radius: 5px;
}

/* TABELA DO DESEMPENHO
/* Estilos gerais para a tabela */
.tabela-desempenho {
    background-color: #f9f9f9; /* Cor de fundo suave */
    color: #000;    
    width: 100%;
    border-collapse: collapse; /* Remove espaçamento entre as células */
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
/* Estilo das cabeçalhos da tabela */
.tabela-desempenho th {
    background-color: #1a355b; /* Azul escuro */
    color: #FFF;
    padding: 8px 1px 8px 1px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
}
/* Estilo das células */
.tabela-desempenho td {
    text-align: center;	
    padding: 1px;	
    font-size: 10px;	
    font-weight: bold;
    border-top: 1px solid #212330;	
}
/* Efeito de hover nas linhas */
.tabela-desempenho tr:hover {
    background-color: #f1f1f1; /* Destaque quando passar o mouse */
}
/* Cantos redondos nas imagens */
.tabela-desempenho img{
    border-radius: 5px;
}
/* TABELA DO DESEMPENHO */

/* TABELA DO PERFIL */
#tabela_perfil {
    width: 350px;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    border-radius: 5px;
    background-color: #202020;
}
#tabela_perfil th {
    text-align: center;
    padding: 5px;
    font-size: 12px;
    letter-spacing: .1em;	
    text-transform: uppercase;
    color: #FFF;
    background-color: #202020;
    text-overflow: ellipsis;
}
#tabela_perfil tr {
    text-align:center;
    height:35px;
}
#tabela_perfil td {
    text-align: center;	
    color: white;
    padding: 5px;	
    font-size: 8px;	
    font-weight: bold;
    letter-spacing: .1em;	
    text-transform: uppercase;
    border-top: 1px solid #212330;	
}

.tab_main{
    width: 100%;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    border-radius: 5px;
}
.tab_main th {
    text-align: center;
    padding: 5px;
    font-size: 12px;
    letter-spacing: .1em;	
    text-transform: uppercase;
    color: #FFF;
    text-overflow: ellipsis;
}
.tab_main tr {
    text-align:center;
    height:35px;
}
.tab_main td {
    text-align: center;	
    color: white;
    padding: 5px;	
    font-size: 10px;	
    font-weight: bold;
    letter-spacing: .1em;	
    text-transform: uppercase;
    	
}
.tab_main a {
    color: white;
}
.tab_convo{
    width: 100%;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    border-radius: 5px;
    background-color: #07100D;
}
.tab_convo td {
    text-align: center;	
    color: white;
    padding: 5px;	
    font-size: 8px;	
    font-weight: bold;
    letter-spacing: .1em;	
    text-transform: uppercase;
    border-top: 1px solid #212330;	
}
.tab_avaliar{
    width: 100%;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    border-radius: 5px;
}
.tab_avaliar tr {
    text-align:center;
    height:35px;
}
.tab_avaliar td {
    text-align: center;	
    color: black;
    padding: 5px;	
    font-size: 10px;	
    font-weight: bold;
    letter-spacing: .1em;
}
.tab_avaliar tr:nth-child(-n+2) {
    background-color: #F2F5F5; /* Cor para o primeiro grupo */
}
.tab_avaliar tr:nth-child(n+3):nth-child(-n+4) {
    background-color: #F0FFE6; /* Cor para o segundo grupo */
}
.tab_avaliar tr:nth-child(n+5):nth-child(-n+6) {
    background-color: #F2F5F5; /* Cor para o terceiro grupo */
}
.tab_avaliar tr:nth-child(n+7):nth-child(-n+8) {
    background-color: #F0FFE6; /* Cor para o terceiro grupo */
}
.tab_avaliar tr:nth-child(n+9):nth-child(-n+10) {
    background-color: #F2F5F5; /* Cor para o terceiro grupo */
}
.tab_avaliar tr:nth-child(n+11):nth-child(-n+12) {
    background-color: #F0FFE6; /* Cor para o terceiro grupo */
}
.tab_veravaliacao{
    width: 150px;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    border-radius: 5px;   
}
.tab_veravaliacao td {
    text-align: center;	
    color: black;
    padding: 5px;	
    font-size: 12px;	
    font-weight: bold;
    letter-spacing: .1em;
    background-color: #F2F5F5;
}
.tab_castigados{
    background-image: url(https://futeleague.pt/images/website/campo_castigo.jpg);
    background-size: 100% 100%;
    width: 100%;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    border-radius: 5px;
}
.tab_castigados a{
    color: gold; /* Define a cor do texto como branca */
    text-decoration: none; /* Remove o sublinhado dos links */
    font-size: 10px;
    font-weight: bold;
}
.tabela_comentarios {
  width: 100%;
  border-collapse: collapse;
}
.tabela_comentarios td{
    font-size: 12px;
    color: #EEE;
    padding-right: 2px;
    padding-bottom: 10px;
}
.comentarios_data {
    font-size: 10px !important;
    padding-right: 5px !important;
}
.mvp_container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px; /* espaço entre blocos */
    max-height: 300px;
    overflow-y: auto;
    justify-content: center;  /* centra horizontalmente */
    text-align: center;       /* centra texto dentro dos itens */
}
.mvp_item {
  border: 1px solid #EEE;
  border-radius: 8px;
  width: 55px;
  padding: 2px; 
  line-height: 0.8;
}
.votado {
  font-weight: bold;
  font-size: 12px;
  color: lime;
}
.votos{
  font-size: 6px;
  color: gold;
}
.votante {
  font-size: 8px;
  color: #FFF;
}
/* Estilo para a div principal */
#comentarios {
    width: 350px;
    max-height: 400px;
    background-color: #202020;
    margin:5px;
    padding:5px;
    overflow: auto;
    text-align:justify;
}
#comentarios::-webkit-scrollbar {
    display: none;
}
/* DIVS PRINCIPAIS #INICIO */
.div_listaconvocados {
    position: relative; /* Adicione um posicionamento relativo à div pai */
    min-height: 250px;
    padding-top: 15px;
    background-image: url(https://futeleague.pt/images/website/campo_equipa.jpg);
    background-size: 100% 100%;
    border: 1px solid #000;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.cancel-overlay {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
}
.cancel-overlay h1 {
    color: #CF2F0C;
    font-size: 26px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
.div_listasuplentes {
    position: relative;
    padding-top: 5px;
    background-image: url(https://futeleague.pt/images/website/campo_suplentes.jpg);
    background-size: 100% 100%;
    border: 1px solid #000;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
}
.div_listacastigados a{
    color: gold; /* Define a cor do texto como branca */
    text-decoration: none; /* Remove o sublinhado dos links */
    font-size: 10px;
    font-weight: bold;
}
/* DIVS PRINCIPAIS #FIM */
.mostrar_jogador {
    text-align: center;
    padding: 10px;
    height: auto;
    color: white;
    position: relative;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.listar_jogador {
    text-align: center;
    padding: 8px;
    height: 100%;
    color: white;
    position: relative;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.listar_jogador a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}
.listar_jogador img {
    border-radius: 10px 10px 2px 2px;
}
.tam_jogador{
    width: 55px;
    height: 75px;
}
.destintivo {
    position: absolute;
    top: -15px;
    left: -5px;
    width: 40px;
    height: 40px;
    z-index: 2;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
}
.forma-jogador {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 0; /* garantir que não há padding extra */
}
.forma-jogador img {
    width: 7px;
    height: 7px;
    margin: 0;
    padding: 0;
    display: block;
    border: 1px solid black;
    box-shadow: 0 0 3px 1px black;
    border-radius: 50%;
}
.notificacoes-div a {
    color: white; /* Define a cor do texto como branca */
    text-transform: uppercase; /* Transforma o texto em maiúsculas */
    font-size: 10px;
    font-weight: bold;
}
.notificacoes-div {
    width: 98%;
    font-size: 14px; /* Tamanho da fonte menor */
    padding-right: 8px; /* Espaçamento interno para afastar o conteúdo das bordas */
}
.notificacoes-ver {
    display: inline-block;
    padding: 5px 10px; /* Ajuste o preenchimento conforme necessário */
    background-color: #EEE; /* Cor de fundo do botão */
    color: #000 !important; /* Cor do texto */
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.jogador {
    position: absolute;
}
.span-aviso1 {
    color: #655CC9;
    font-size: 11px;
}
#xpProgress {
  width: 150px;
  height: 8px; /* Defina a altura desejada para a barra de progresso */
}
/* DIV DE AVISO QUE JOGADOR AINDA NÃO VOTOU */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EEE;
  color: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column; /* Para alinhar o conteúdo verticalmente */
  justify-content: center;
  align-items: center;
}
/* PAGINA DE RESULTADOS */
.team0 {
    width: 100%;
    text-align: center; 
}
.team1, .team2 {
    width: 50%; 
    float: left; 
    box-sizing: border-box; 
    border: 1px solid #000;
    border-radius: 5px;
    min-height: 350px;
}
/* Estilos adicionais para as divs 'team1' e 'team2' */
.team1 {
    background-image: url(https://futeleague.pt/images/website/campo_equipa.jpg);
    background-size:100% 100%;
}
.team2 {
    background-image: url(https://futeleague.pt/images/website/campo_equipa.jpg);
    background-size:100% 100%;
}
#tabela_teams {
    width: 98%;
    table-layout: fixed;
    margin: 0;
    padding: 0;	
    border-collapse: collapse;
    background-color: none;
}
#tabela_teams th {
    text-align: center;
    padding: 2px;
    font-size: 12px;
    letter-spacing: .1em;	
    text-transform: uppercase;
    color: white;
    background-color: #202020;
    text-overflow: ellipsis;
}
#tabela_teams td {
    text-align: center;	
    padding: 2px;	
    font-size: 10px;	
    font-weight: bold;
    color: white;
    letter-spacing: .1em;	
    text-transform: uppercase;
}
#tabela_teams a{
    color: white;
}
#tabela_teams img{
    border-radius: 5px;
}
.div_main{
    width: 98%;
    background-color: #07100D;
    border-radius: 5px;
    box-shadow: 0 0 6px 3px  rgba(131, 142, 193, 0.4);
}
.div_info{
    width: 98%;
    background-color: rgba(25, 38, 36, 0.7);
    border-radius: 5px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 0 10px 5px  rgba(131, 142, 193, 0.4);
}
@keyframes BorderFimdeAno {
  0% {
    box-shadow: 0 0 10px 0px red;
  }
  25% {
    box-shadow: 0 0 10px 5px green;
  }
  50% {
    box-shadow: 0 0 10px 0px gold;
  }
  75% {
    box-shadow: 0 0 10px 5px green;
  }
  100% {
    box-shadow: 0 0 10px 0px red;
  }
}
.div_retrospectiva {
    width: 90%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 20px;  
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.3);
    text-align: justify;
    font-size: 14px;
    line-height: 1.25;
    position: relative; /* Adiciona posição relativa para que o box-shadow seja posicionado em relação a este elemento */
    animation: BorderFimdeAno 5s infinite;
}
.btmvp {
    height: 60px;
    width: 60px;
    background-color: transparent;
    background-size:100% 100%;
    border: none;
    cursor: pointer;
    color: white;
}
.btmvp:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}
.SA-MVP{
    color: white !important;
    background-image: url(https://futeleague.pt/images/website/mvpwallpaper.jpg) !important;
    background-size:100% 100% !important;
}
/* Estilos das divs internas */
.divMVP1, .divMVP2, .divMVP3, .divMVP4 {
    width: 98%;
    border: 0px solid red;
}
.divMVP1 {
    height: 30px;
    margin-top:15px;
}
.divMVP2 {
    height: 195px;
    margin-top:5px;
}
.divMVP3 {
    height: 30px;
}
.divMVP4 {
    height: auto;
}
/* Estilo para as divs internas */
.div-lado-a-lado {
    display: inline-block;
    width: 48%;
    box-sizing: border-box;
    border-radius: 5px;	
}
.espaco {
    clear: both;
    height: 20px; /* Espaço de 10 pixels */
}
.linha-verde {
    width: 100%;
    margin-top: 5px; /* Espaçamento superior */
    margin-bottom: 5px; /* Espaçamento inferior */
    border-bottom: 1px solid rgba(0, 255, 0, 0.4); /* Cor lime RGBA */
    box-shadow: 0 1px 2px rgba(0, 255, 0, 0.4); /* Efeito de brilho lime */
}
.linha_preta {
    width: 100%;
    margin-top: 5px; /* Espaçamento superior */
    margin-bottom: 5px; /* Espaçamento inferior */
    border-bottom: 1px solid rgba(0, 0, 0, 0.4); /* Cor preta RGBA */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); /* Efeito de brilho preto */
}
.linha_cinza {
    width: 100%;
    margin-top: 5px; /* Espaçamento superior */
    margin-bottom: 5px; /* Espaçamento inferior */
    border-bottom: 1px solid rgba(128, 128, 128, 0.4); /* Cor cinza RGBA */
    box-shadow: 0 1px 2px rgba(128, 128, 128, 0.4); /* Efeito de brilho cinza */
}
.linha_azul {
    width: 100%;
    margin-top: 5px; /* Espaçamento superior */
    margin-bottom: 5px; /* Espaçamento inferior */
    border-bottom: 1px solid rgba(131, 142, 193, 0.4);
    box-shadow: 0 1px 2px rgba(131, 142, 193, 0.4);
}
.linha_cinza_noti {
    width: 100%;
    margin-top: 5px; /* Espaçamento superior */
    margin-bottom: 5px; /* Espaçamento inferior */
    border-bottom: 1px solid rgba(128, 128, 128, 0.4); /* Cor cinza RGBA */
    box-shadow: 0 1px 2px rgba(128, 128, 128, 0.4); /* Efeito de brilho cinza */
}
/* ADAPATAÇÃO PARA NÃO MOBILE */
/* Estilo do tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.element {
    position: absolute;
    opacity: 0.8;
    animation: fadeInOut linear infinite;
}
.star {
    width: 10px;
    height: 10px;
    background-color: #ffd700; /* Cor das estrelas, sinta-se à vontade para mudar */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle linear infinite;
}
/* DESEMPENHPO */
.autoavalia td{
    color: #000;
}
.listar_jogador td {
    font-size: 10px; /* Ajuste o tamanho do texto conforme necessário */
    font-weight: bold;
    color: #FFF; /* Define a cor do texto como laranja */
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center; /* Opcional: centra o conteúdo horizontalmente */
    gap: 2px; /* Opcional: adiciona um espaço entre as imagens */
}
/* TREINADOR - TABELA INSERIR RESULTADOS */
.bt_manager {
    background-color: #339933;
    color: white;
    font-size: 13px;
    width: 100px;
    height: 40px;
    margin: 2px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    line-height: 1.2;
}
.bt_manager:hover {
    background-color: #2a7d2a;
}
.menu-treinador {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 360px; /* 3 botões de 100px + margens */
    margin: auto;
}
.menu-treinador a {
    flex: 0 0 calc(33.333% - 20px); /* 3 por linha com gap */
    text-align: center;
}
.result_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}
.result_table td, .result_table th {
    padding: 10px;
    text-align: center;
}
.result_table td {
    border: 0px solid #ddd;
}
.result_table th {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    color: #333;
    font-size: 18px;
}
.result_table .header {
    background-color: #333;
    color: gold;
    font-size: 18px;
    font-weight: bold;
}
/* Estilização dos inputs */
.result_table input[type='text'] {
    width: 100%;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #007bff;
    border-radius: 5px;
    padding: 0 10px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
/* Estilização do botão */
.result_table button {
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
/* BARRA TEMPO RESTANTE WILD CARDS */
#progressBarContainer {
    display: none; /* Começa oculta */
    width: 90%;
    background-color: #f3f3f3;
    height: 15px;
    margin-top: 10px;
    position: relative;
    border-radius: 15px;
}
#progressBar {
    height: 100%;
    width: 0%; /* Inicia em 0% */
    background-color: #4caf50;
    transition: width 1s linear; /* Animação suave de preenchimento */
    position: absolute;
    margin: auto;
    top: 0;
    border-radius: 15px;
}
#timeRemaining {
    text-align: center;
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@media screen and (min-width: 381px) {
    .div_main {
        width: 385px;
    }
    #divmvp{
       width: 385px; 
    }
}
/* Estilo geral da tabela */
.table-comentarios {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
}
.table-comentarios td {
    border: none;
    padding: 4px;
    text-align: left;
}
/* Ajustar a largura das colunas */
.nome-container {
    width: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.td-comentario {
    width: 100%;
    text-align: left;
    vertical-align: middle;
}
/* Nomes 'de' e 'para' com largura fixa */
.nome-de, .nome-para {
    width: 90%;
    height: 15px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #4A90E2;
    background-color: #e6f0ff;
    padding: 4px 8px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis; /* Adiciona "..." caso o nome seja maior que a largura */
    white-space: nowrap; /* Impede a quebra de linha */
}
/* Balão de comentário */
.comentario {
    min-height: 35px;
    font-size: 14px;
    color: #555;
    background-color: #f4f7fc;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    word-wrap: break-word; /* Quebra palavras longas para não ultrapassar a largura */
}
/* Seta do balão (apontando para baixo) */
.seta-para-baixo {
    content: '';
    position: absolute;
    top: 24px;  /* Ajuste o top para posicionar melhor a seta */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f4f7fc;  /* Cor da seta */
}
.aviso {
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.swal2-close {
    border: none !important; /* Remove qualquer borda */
    outline: none !important; /* Remove o contorno no foco */
    box-shadow: none !important; /* Remove sombras que possam aparecer */
    background: transparent !important; /* Garante fundo limpo */
    color: red !important; /* Cor do ícone */
}
.swal2-close:hover {
    color: #333 !important; /* Cor mais escura ao passar o mouse */
}

/* TESTE NOVA APRESENTAÇÃO DO JOGADOR*/
.cartao-jogador {
  position: relative;
  width: 60px;
  font-family: sans-serif;
  font-size: 10px;
  color: white;
  text-align: center;
  margin: 0 5px 5px 5px;    /* cima direita baixo esquerda */
  display: inline-block;   /* para ser tratado como conteúdo inline */
  border: 0px solid red;
}
.jogador-distintivo {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -12px;
  left: -8px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.jogador-overall {
  font-weight: bold;
  color: gold;
  font-size: 11px;
  margin-bottom: 0px;
  z-index: 4;
}
.jogador-wrapper {
  width: 60px;
  height: 85px;
  position: relative;
  overflow: hidden;
}
/* Imagem do jogador */
.jogador-foto {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 50px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px 10px 40px 40px !important;
  z-index: 1;
}

/* Moldura */
.border-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 85px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}
/* Forma do jogador por cima da imagem */
.jogador-forma {
  position: absolute;
  bottom: 13px;
  left: 2px;
  width: 56px;
  display: flex;
  justify-content: center;
  gap: 1px;
  z-index: 3;
}
.jogador-forma img {
    width: 7px;
    height: 7px;
    margin: 0;
    padding: 0;
    display: block;
    border: 1px solid black;
    box-shadow: 0 0 3px 1px black;
    border-radius: 50%;
}
/* Nome por baixo */
.nome-jogador {
  font-weight: bold;
  font-size: 9px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
}
/* Molduras Premium e Normal */
.border-normal .border-overlay {
  background-image: url('https://futeleague.pt/images/website/BorderNormal.png');
}
.border-premium .border-overlay {
  background-image: url('https://futeleague.pt/images/website/BorderPremium.png');
}
.border-team1 .border-overlay {
  background-image: url('https://futeleague.pt/images/website/BorderTeam1.png');
}
.border-team2 .border-overlay {
  background-image: url('https://futeleague.pt/images/website/BorderTeam2.png');
}
.border-results .border-overlay {
  background-image: url('https://futeleague.pt/images/website/BorderTeamResults.png');
}

/* TESTE NOVA APRESENTAÇÃO DO JOGADOR*/

/* TABELA PREMIUM DA INFO DE SOBE DESCE */
.tabela-info-sobe-desce {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    font-family: Arial, sans-serif;
    margin: 10px 0;
    background: #1e1e1e; /* fundo preto suave */
    color: #e0e0e0;      /* texto claro */
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    border-radius: 6px;
    overflow: hidden;
}
.tabela-info-sobe-desce th, 
.tabela-info-sobe-desce td {
    border: 1px solid #333;
    padding: 6px 2px;
    text-align: center;
}
.tabela-info-sobe-desce th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: #111; /* cabeçalho preto mais escuro */
}
.tabela-info-sobe-desce tr:nth-child(even) {
    background-color: #2a2a2a; /* cinza escuro */
}
.tabela-info-sobe-desce tr:nth-child(odd) {
    background-color: #1e1e1e; /* fundo base */
}
.tabela-info-sobe-desce tr:hover {
    background-color: #333; /* hover mais claro */
    cursor: pointer;
}
/* Destaque do jogador */
.tabela-info-sobe-desce tr.jog {
    background-color: #2e7d32 !important; /* verde escuro */
    color: #fff;
    font-weight: bold;
    box-shadow: inset 0 0 10px #000;
}
/* Cores específicas */
.tabela-info-sobe-desce .bg-green { background-color: #113F1B; color: #fff; }
.tabela-info-sobe-desce .bg-orange  { background-color: #C66D19; color: #fff; }
.tabela-info-sobe-desce .bg-red   { background-color: #791F20; color: #fff; }
/* TABELA PREMIUM DA INFO DE SOBE DESCE */


/* DIV DA VOTAÇAO DO MVP */
.div_listajogadores {
    position: relative;
    max-width: 400px;
    min-height: 300px;
    padding-top: 50px;
    background-image: url(https://futeleague.pt/images/website/campo_mvp.jpg);
    background-size: 100% 100%;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    /* fade nas 4 bordas */
    -webkit-mask-image: 
        linear-gradient(to right, transparent, black 15%, black 85%, transparent),
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-composite: destination-in;
    mask-image: 
        linear-gradient(to right, transparent, black 15%, black 85%, transparent),
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-composite: intersect; /* para Firefox */
    
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    mask-size: cover;
}


.cartao-mvp {
  position: relative;
  width: 60px;
  font-family: sans-serif;
  font-size: 10px;
  color: white;
  text-align: center;
  margin: 0 5px 5px 5px; 
  display: inline-block;   
  border: 0px solid red;
}
.mvp-wrapper {
  width: 60px;
  height: 85px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mvp-foto {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 50px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px 10px 40px 40px !important;
  z-index: 1;
}
.border-overlay-mvp {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 85px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}
.nome-mvp {
  font-weight: bold;
  font-size: 10px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFF;
  text-shadow: 1px 1px 2px black; /* sombra preta leve */
  text-transform: uppercase;       /* tudo em maiúsculas */
}

.quiz-btn{background:linear-gradient(90deg,#003b8e,#001d4a);color:#fff;border:2px solid #ffd700;border-radius:5px;padding:10px 25px;font-size:1em;cursor:pointer;margin-top:15px;display:block;}
.quiz-btn:hover{background:linear-gradient(90deg,#001d4a,#003b8e);}
.quiz-pergunta{display:none;background:#1A355B;border:1px solid #191C24;border-radius:5px;padding:20px;margin:25px;}
.quiz-option {
    display: block;
    background: rgba(0,10,50,0.8);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 10px 0;
    cursor: pointer;
    text-align: left;       /* alinha o texto à esquerda */
    font-size: 16px;        /* aumenta o tamanho do texto */
    line-height: 1.4;       /* espaçamento entre linhas */
}
.quiz-option input {
    margin-right: 10px;     /* espaço entre o radio e o texto */
    vertical-align: middle;
}
.quiz-option.selecionada {
    background: linear-gradient(90deg, #00aa2b, #007d20);
}
#quiz-status{margin:25px;font-weight:bold;}
.fade-in{opacity:0;transform:translateY(20px);animation:fadeInAnim 0.6s forwards;}
@keyframes fadeInAnim{to{opacity:1;transform:translateY(0);}}