
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    #extra-results {
        display: flex;
        flex-direction: column;
    }

    .numeros-principais, #triang_invert_life {
        order: 1; /* Aparece sempre no topo em smartphones */
    }

    .motivacao, .impressao, .expressao, .destino, .missao {
        order: 2; /* Aparecem após números e triângulo */
    }
}

#extra-results {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.blinking-text-alert {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.numeros-principais {
    width: 100%;
    box-sizing: border-box;
}

#triang_invert_life {
    width: 100%;
    box-sizing: border-box;
    margin: 5px auto;
}

/* Estiliza o H3 para ficar maior e centralizado */
h3 {
    font-size: 25px; /* Aumenta o tamanho do título */
    text-align: center; /* Centraliza o texto */
    font-weight: bold; /* Deixa o título em negrito (opcional) */
}

/* Estiliza apenas o texto que está dentro do <p> abaixo de um <h3> */
h3 + p {
    font-size: 11px; /* Tamanho menor para o parágrafo */
    text-align: justify !important; /* Força a justificação */
    line-height: 1.6; /* Melhora a leitura */
    margin: 0 15px; /* Adiciona margem para evitar que o texto fique muito colado nas laterais */
}
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f9f9f9;
}
header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 2px;
}
main {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 5px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
} 
section {
    border: 1px solid #ddd;
    padding: 5px;
    margin: 2px;
    background-color: #fff;
}
section:first-of-type {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
}
section:first-of-type > div:first-child {
    margin-bottom: 2px;
}
section:last-of-type {
    flex: 1;
}
section h2 {
    text-align: center;
    margin-bottom: 2px;
}
form input[type="text"] {
    width: 95%;
    font-size: 14px;
    padding: 2px;
}
form input[type="date"] {
    width: 130px;
    font-size: 14px;
    padding: 2px;
}
.extra-results {
    font-size: 14px;
    padding: 3px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    text-align: left;
}
.extra-results table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3px;
}
.extra-results th,
.extra-results td {
    border: 1px solid #ddd;
    padding: 3px;
    text-align: center;
    font-size: 14px; /* Define o tamanho da fonte */
}
.extra-results th {
    background-color: #4CAF50;
    color: white;
}
.triangle {
    font-family: monospace;
    text-align: center;
    margin-top: 2px;
    overflow-x: auto;
}
.triangle-line {
display: flex;
justify-content: center; /* Mantém o alinhamento central */
margin-bottom: 0px; /* Reduz o espaçamento vertical */
line-height: 1; /* Controla a altura da linha */
}
.triangle-line span {
    display: inline-block;
    width: 14px;
    text-align: center;
    margin: 2px;
    font-size: 14px;
}
.triangle-line.name span {
    font-weight: bold;
    font-size: 14px;
}
.triangle-line.last span {
    font-weight: bold;
    font-size: 15px; /* Tamanho da fonte */
    background-color: #D2B48C; /* Cor de fundo marrom claro */
    padding: 2px 2px; /* Aumenta o espaçamento interno */
    border-radius: 2px; /* Bordas arredondadas */
    display: inline-flex; /* Alinha melhor o texto */
    justify-content: center; /* Centraliza horizontalmente o texto */
    align-items: center; /* Centraliza verticalmente o texto */
    text-align: center; /* Centraliza o texto dentro do fundo */
    margin: 2px; /* Espaçamento entre os números */
    min-width: 5px; /* Ajusta a largura mínima */
}
button {
    padding: 5px 10px;
    margin: 3px;
    font-size: 14px;
    cursor: pointer;
}
footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 5px;
}

.negative-sequences {
text-align: left;
margin-top: 5px;
font-size: 14px;
}
.negative-sequences h3 {
font-size: 14px;
margin-bottom: 1px;
color: red; /* Título em vermelho */
text-transform: uppercase; /* Texto em caixa alta */
}
.negative-sequence {
margin-bottom: 1px;
}
.negative-sequence strong {
color: red; /* Texto "Sequência X" em vermelho */
font-size: 14px;
}
.negative-sequence span {
color: red; /* Números das sequências negativas em vermelho */
font-weight: bold;
font-size: 14px;
}
.negative-sequence {
margin-left: 1px;
color: red; /* Texto do significado em vermelho */
font-size: 14px;
}
.meaning {
color: green;           /* Cor verde */
font-size: 14px;        /* Aumenta o tamanho da fonte */
animation: blink 1s infinite; /* Efeito de piscar */
}

@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.negative-highlight {
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 1px;
    border-radius: 1px;
}
.last-number {
font-weight: bold;
background-color: #D2B48C; /* Marrom claro */
padding: 2px 4px;
border-radius: 3px;
}

.row-blue {
background-color: lightblue;
}
.row-gray {
background-color: lightgray;
}

.AVA-highlight {
font-weight: bold;
color: BLUE;
background-color: YELLOW;
padding: 1px;
border-radius: 1px;
box-shadow: 0 0 5px rgba(0, 0, 255, 0.7);
}

.expression-highlight {
font-weight: bold;
color: black;
background-color: #ADFF2F; /* Verde limão */
padding: 1px;
border-radius: 1px;
}
.text-aligh{
text-align: left;
}

.blinking-text-alert {
    margin:0 !important;
    padding:0 !important;
    line-height:1 !important;
    color: orange; /* Cor do texto */
    font-weight: bold; /* Negrito */
    animation: blink 1s infinite; /* Animação para piscar */
    }

@keyframes blink {
0%, 100% {
    opacity: 1; /* Totalmente visível */
}
50% {
    opacity: 0; /* Invisível */
}
}
table {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#midle_section_2 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

#midle_section_2 table {
    margin: 0 auto;
}

th {
    text-align: center;
    vertical-align: middle;
    padding: 5px;
}
/*/////////////////////////////////////////
FIM DA CSS /////////////////////////////////
////////////////////////////////////////////*/