﻿/* =========================================================
   PAGINACAO GRID AJVCONTROL
========================================================= */

.grid-paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
    flex-wrap: wrap;
    gap: 20px;
}

/* INFO */

.grid-paginacao-info {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

/* BOTOES */

.grid-paginacao-botoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* BOTAO PAGINACAO */

.btn-paginacao {
    min-width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(180deg, #0f3d73 0%, #0c2f58 100%);
    color: white !important;
    font-weight: 700;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(15,61,115,.20);
    text-decoration: none;
}

    /* HOVER */

    .btn-paginacao:hover {
        transform: translateY(-2px);
        background: linear-gradient(180deg, #14508f 0%, #0f3d73 100%);
        color: white !important;
        box-shadow: 0 6px 15px rgba(15,61,115,.30);
    }

/* DESABILITADO */

.btn-paginacao-disabled {
    opacity: .45;
    pointer-events: none;
}

/* SELECT */

.grid-select-pagina {
    width: 90px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #dbe3ec;
    padding: 0 10px;
    font-weight: 600;
    color: #374151;
    background: white;
}
/* =========================================================
   FILTROS GRID
========================================================= */

.box-filtros-grid {
    background: white;
    border-radius: 18px;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}