/* Media query para dispositivos móveis com largura máxima de 576px */
@media (max-width: 576px) {

    .pag_dados {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        /* Ajusta para que a página de dados não ultrapasse a parte de baixo */
        right: 0;
        /* Ajusta para que a página de dados não ultrapasse a parte de direita */
        z-index: 2;
        max-height: 56vh;
        max-width: 250px;

    }

    .pag_dados .card-body{
        overflow-y: auto;
        
    }
    .footer{
        margin-bottom: 10px;
        font-size: 10px;
    }
    
    
}

@media (max-width: 1000px) and (orientation: landscape){
    .pag_dados_cel {
        position: absolute;
        top: 0;
        bottom:0;
        right:0;
        z-index: 2;
        max-height:50vh;
       
    }

    
    .pag_dados {
        position: absolute;
        top: 0;
        right: 0; /* Ajusta a página de dados para o canto direito */
        bottom: 0;
        z-index: 2;
        max-height: 77vh;
        
    }

    .card-header-pg-dados h2{
        width: 500px;
        background-color: #f8f9fa; /* Cor de fundo */
         margin-right:15px;
        font-weight: bold; /* Peso da fonte */
        color: #333; /* Cor do texto */
        font-size: 20px;
    }
    
    .card-body-pg-dados b{
        font-size: 14px;
    }
    .card-body-pg-dados p{
        font-size: 12px;
    }
    .pag_dados .card-body{
        overflow-y: auto;
        width:100%;
    }
    .progress-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #000;
        font-weight: bold;
        font-size: 10px;
    }
    .close-button {
        background-color: transparent;
        border: 1px solid #ccc; /* Adiciona uma borda sólida com cor cinza */
        border-radius: 4px; /* Adiciona bordas arredondadas */
        cursor: pointer;
        font-size: 15px;
        color: #333;
        float: right; /* Alinha o botão à direita */
        transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Adiciona transição suave */
    }
    
    .close-button:hover {
        background-color: #f8f9fa; /* Altera a cor de fundo quando hover */
        color: #dc3545; /* Altera a cor do texto quando hover */
        border-color: #dc3545; /* Altera a cor da borda quando hover */
    }
    .footer{
        margin-bottom: 10px;
        font-size: 10px;
    }

    .header {
       display:none;
    }
   
    .pag_pesquisa{
        justify-content: left;
        max-width: 50%;
    }
    
    
}