/* Estilização Estrutural do Rodapé Fixo */
.main-footer-fixed 
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #5492DB;
    background: linear-gradient(90deg,rgba(84, 146, 219, 1) 0%, rgba(65, 71, 73, 1) 60%);    
    color: #f8fafc;
    font-size: 14px;
    line-height: 35px;
    z-index: 9999; /* Garante que fique por cima de tabelas e painéis */
    border-top: 1px solid #334155;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.footer-content 
{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-left, .footer-center, .footer-right 
{
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Compensação para o conteúdo do Adianti não sumir atrás do rodapé */
body 
{
    padding-bottom: 35px !important;
}

/* Ajuste fino para modais e janelas TWindow não ficarem presas atrás da barra */
.modal 
{
    z-index: 10050 !important;
}

.footer-separator 
{ 
    margin: 0 13px; color: #475569; 
}

/* Remove o fundo verde da badge da versão no rodapé, deixando o texto plano e branco */
.main-footer-fixed .badge-success 
{
    background-color: transparent !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 !important;
    font-size: inherit !important;
    font-weight: normal !important;
}