/*#region Imports*/
@import url('https://fonts.googleapis.com/css2? family= Anek+Malayalam:wght@300 & display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*#endregion*/

/*#region Geral*/
body{
    font-family: 'Anek Malayalam', sans-serif;
    background-color: #f8f9fa;
    text-decoration: none;
    /* overflow-x: hidden;  */
}

.grid-container{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-areas: 
    'header'
    'main';
    grid-template-rows: 100px auto;
}

/*#endregion*/

/*#region Header*/
.header{
    grid-area: header;
    position: fixed;
    text-align: center;
    width: 100%;  
    background-color: #10502f;
    box-shadow: 0px 2px 4px #888888;
}

.header figure{
    margin-top: 5px;
    margin-bottom: 10px;
}

.header nav{
    display:flex;
    flex-wrap: nowrap;
    justify-content: center;
    font-size: 0.75em;
}

.header nav div{
    line-height: 35px;
    color: #9db7a9;
    margin-left:4px;
    margin-right:4px;
    font-size: 0.8em;
}

.nav-destacado{
    border-bottom: 3px solid #ffffff;
    color: #ffffff !important;
}

.nav-destacado:hover{
    background-color: #0e482a;
    cursor:pointer;
}
/*#endregion */

/*#region Main*/
.main{
    grid-area: main;
    display: flex; 
    justify-content: center;
}

#conteudo{
    text-align: center;
    border: 1px solid #e9eaeb;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#topo{
    width: 100%;
    padding: 15px;
    padding-left: 20px;
    background-color: #f1f3f4;
    text-align: left;
    font-size: 0.85em;
}

#ano{
    font-weight: 600;
    color: #4285f4;
}

a:link{
    text-decoration: none;
    color: #70758d;
}
a:visited{
    text-decoration: none;
    color: #70758d;
}

#linha{
    width: 98%;
    border-top: 1px solid #dadec0;
}

/*#region Tabela */
#tabela{
    width: 100%;
    text-align: center; 
}

#tabela table{
    border-collapse: collapse;
}

#tabela th{
    font-weight: 100;
    color: #70758d;
    padding: 4px;
    height: 35px;
    font-size: 0.8em;
}

.coluna-clube{
    width: 20%;
    text-align: left;   
}

.coluna-ultimas-cinco{
    width: 50%; 
}

.coluna-ultimas-cinco img{
    width: 7px !important;
    font-size: 0.6em;
}

.coluna-bordas{ 
    border-top: none !important;
}

#tabela img{
    width: 25px;
}

#tabela td{
    border-top: 1px solid #dadec0;
    font-weight: 100;
    color: #000000;
    padding: 4px;
    height: 40px;
    font-size: 0.6em;
    height: 30px;
    width: auto;
    padding: 2px;

}

.borda-azul{
    border-left: 3px solid #4285f4;
}

.borda-laranja{
    border-left: 3px solid #fa7b17;
}

.borda-verde{
    border-left: 3px solid #34a853;
}

.borda-vermelho{
    border-left: 3px solid #ea4335;
}
/*#endregion*/

/*#region Legenda*/
#legenda{
    display: flex;
    flex-direction: column;
    width: 98%;
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
    border: 1px solid #e9eaeb;
    border-radius: 5px;
    font-size: 0.8em; 
    margin-top: 10px;
    margin-bottom: 10px;
}

#legenda div{
    /* width: 50%; */
    width: 100%;/*arrumei*/
    margin-bottom: 15px;
}
#legenda img{
    width: 10px;
}

/*#endregion*/
/*#endregion */

/*#region Media Query*/
@media (min-width: 375px){
    #tabela td{
        font-size: 0.65em;
    }
    .coluna-ultimas-cinco img{
        width: 7px !important;
    }
}

@media (min-width: 425px){

    .header nav div{
        margin-left:10px;
        margin-right:10px;
    }

    #tabela td{
        font-size: 0.65em;
    }
    .coluna-ultimas-cinco img{
        width: 12px !important;
    }
}

@media (min-width: 576px){
    .header nav div{
        margin-left:16px;
        margin-right:16px;
        font-size: 1.2em;
    }

    #conteudo{
        width: 576px;
    }

    #tabela td{
        font-size: 0.9em;
        height: 30px;
        width: auto;
        font-weight: 400;
        padding: 2px;
    }

    #tabela img{
        width: 20px;
    }

    .coluna-clube{
        width: 50%;
    }

    .coluna-ultimas-cinco{
        width: 20%;
    }

    .coluna-ultimas-cinco img{
        width: 14px !important; 
    }

    #legenda{
        flex-direction: row;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #legenda div{
        width: 50%;
    } 
}

@media (min-width: 768px){
    #conteudo{
    width: 750px;
    }
}
/*#endregion*/







