﻿#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 */
}

.login-box {
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
}

.card {
    box-shadow: none;
}

.linha-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.label-item {
    margin-bottom: 0;
}

.select-pequeno {
    height: 30px;
    padding: 2px 6px;
    font-size: 13px;
    width: 180px;
}

.input-pequeno {
    width: 70px;
    height: 28px;
    padding: 2px 5px;
    font-size: 13px;
}

.nomeAlimento {
    padding: 2px 10px;
}

.nomeVencimento {
    display: inline-block;
    margin-right:10px;
    margin-bottom: 0px;
}

.validade {
    display: inline-block;
    width: auto;
    min-width: 100px
}

.selectAlimento {
    padding: 2px 10px;
    display: inline-block;
    width: auto;
}

.row{
    padding: 10px 0px 0px 0px;
}

.btnRemoverLinha {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0px;
}

.quantidade {
    display: inline-block;
    width: 70px;
}

.span-unidade {
    padding: 5px;
}

.dadosDash {
    padding: 20px;
}