@charset "ISO-8859-1";

/* ==============================
   Layout do template principal
   ============================== */
   
.linha-centro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.botoes-centro {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.legenda-usuarios {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.usuario-topo-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.exportacao-opcoes {
    display: grid;
    grid-template-columns: repeat(5, 150px);
    gap: 8px;
    justify-content: center;
}
@media (max-width: 850px) {
    .exportacao-opcoes {
        grid-template-columns: repeat(3, 150px);
    }
}		
@media (max-width: 550px) {
    .exportacao-opcoes {
        grid-template-columns: repeat(1, 150px);
    }
}

.politica-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.politica-texto {
    flex: 1;
    min-width: 260px;
}

.rodape-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
}

.rodape-usuario {
    text-align: left;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rodape-info {
    text-align: right;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    list-style: none;   /* remove as bolinhas */
    /* background: #1f4aa8; */ /* azul estilo gov */
    background: rgba(31, 74, 168, 0.85);
    backdrop-filter: blur(4px);		    		    
    display: flex;
    justify-content: center;
    gap: 2px;		
    padding: 8px;
    z-index: 99999;		
    transform: translateY(-100%); /* escondido */
    transition: transform 0.2s ease;
}

/* quando QUALQUER item receber foco */
.skip-link:focus-within {
    transform: translateY(0); /* aparece */
}

.skip-link a {
    color: white;
    background: #0b2e6b;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'open_sansbold';			
    font-size: 9pt;
}

/* item focado */
.skip-link a:focus {
    outline: 2px solid yellow;
    background: #2d6cdf;
}

.center {
    text-align: center;
}

/* .slide-handle {
    outline: none;
}

.slide-handle:focus {
    outline: 2px solid yellow;
} */

