﻿#botoesAlinhados {
    text-align: right;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

    .loading-overlay.show {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

.loading-content {
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    table.dataTable td.acao-coluna {
        min-width: 80px;
        white-space: nowrap;
    }
}

.login-page-bg {
    position: fixed; /* fixa no fundo */
    top: 0;
    left: 0;
    width: 100vw; /* largura total da tela */
    height: 100vh; /* altura total da tela */
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* envia para trás do conteúdo */
}