/*Tabela do Bilhete*/
#tabela {
    width: 100%; color: black; background-color: white; border: 0px; border-spacing: 0px; line-height: 1.1;
}

/*Tabelas*/
.tabelaConteudo {
    width: 100%; border-spacing: 0px; text-align: center;
    margin: auto; margin-bottom: 10px; font-size: 18px;
}
.tabelaConteudo a {
    color: var(--cor_prin_1); text-decoration: none;
}
.tabelaConteudo thead th {
    background: linear-gradient(var(--cor_prin_1), var(--cor_prin_2)); font-weight: bold;
    color: white; padding: 4px;
}
.tabelaConteudo tbody td {
    text-align: center; padding: 4px;

}
.tabelaConteudo tbody tr:hover {
    color: black;
    background: linear-gradient(lightgray, #f0f0f0, lightgray);
}
.linkTabela:hover {
    background-color: var(--cor_leve); color: black;
}


.tabelaSemBorda, .tabelaSemBorda tr, .tabelaSemBorda td, .tabelaSemBorda th { border: 0px; }
.tabelaComBorda, .tabelaComBorda tr, .tabelaComBorda td, .tabelaComBorda th { border: 1px solid black; }
.linhasZebradas tr:nth-child(odd) {
    background: #D3D3D3;
}
.linhasZebradas tr:nth-child(even) {
    background: #f0f0f0;
}



.tabelaJogos #times {
    border-left: 4px solid var(--cor_prin_1);
}
.tabelaJogos thead th {
    background-color: var(--cor_leve); color: black; font-size: 18px;
    font-weight: normal;
}
.tabelaJogos tbody a {
    color: white; text-decoration: none;
}

.linkJogos:hover {
    background-color: lightgray;
}

.linhaMaisOpcoes {
    text-align: right; padding: 5px; display: inline-table; background-color: #f0f0f0; margin: 2px 3px 15px 3px;
    cursor: pointer;
}
.linhaMaisOpcoes:hover {
    background-color: lightgrey;
}
.linhaMaisOpcoes:active {
    background-color: black; color: white;
}

.maisOpcoesTipo {
    margin: 5px auto; background-color: #F2F2F2; text-align: center; font-weight: bold; padding: 3px;
}

.tabelaTitulo {
    background-color: var(--cor_leve); text-align: center; color: black; font-size: 18px;
}

.tabelaPadding thead th {
    padding: 3px 7px;
}
.tabelaPadding tbody td {
    padding: 3px 7px;
}

.tabelaResultados {
    width: 100%; border-spacing: 0px; text-align: center; border: 1px solid black;
    margin: auto; margin-bottom: 10px; font-size: 18px;
}
.tabelaResultados thead th {
    background-color: var(--cor_leve); font-weight: bold;
    color: black; padding: 2px 0px; border: 1px solid black;
}
.tabelaResultados tbody td {
    text-align: center; padding: 2px 0px; border: 1px solid black;

}
.tabelaResultados tbody tr:hover {
    background-color: white; color: black;
}
.placar {
    text-align: center; background-color: var(--cor_leve); color: black; font-weight: bold;
}

.linhaTabelaJogos {
    background-color: white; margin: auto; padding: 2px 0px; font-weight: bold;
    font-size: 18px; color: black; border: 0px; text-align: center;

	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

	-webkit-box-shadow: 0px 1px 4px 0px black;
	   -moz-box-shadow: 0px 1px 4px 0px black;
	        box-shadow: 0px 1px 4px 0px black;
}
.linhaTabelaJogos:hover {
    background-color: var(--cor_prin_1); color: white; cursor: pointer;
}
.linhaTabelaJogos:active {
    background-color: black; color: white; cursor: pointer;
}

.linhaTabelaJogos2 {
    padding: 4px 10px; font-size: 22px;
}


.linhaTabelaJogosDestaque {
    background: linear-gradient(var(--cor_input_1), var(--cor_input_2));
    padding: 2px 0px; width: 80%; color: var(--cor_text_input);
    font-size: 20px; text-align: center;
}
.linhaTabelaJogosDestaque:hover {
    background: linear-gradient(var(--cor_prin_1), var(--cor_prin_2));
    color: white; cursor: pointer;
}
.linhaTabelaJogosDestaque:active {
    background: linear-gradient(var(--cor_prin_1), var(--cor_prin_2));
    color: white; cursor: pointer;
}