body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#wrapper {
    display: flex;
    width: 100%;
    flex: 1;
    transition: all 0.3s;
}

#sidebar-wrapper {
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #343a40;
    color: white;
    transition: all 0.3s ease;
    z-index: 1050;
    overflow-y: auto; /* Adiciona a barra de rolagem vertical */
}

#page-content-wrapper {
    width: 100%;
    margin-left: 250px;
    transition: margin-left 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#menu-toggle {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1060;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

#wrapper.toggled #page-content-wrapper {
    margin-left: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #e2ba06f3;
    color: #19202D;
    border-radius: 5px;
    box-shadow: 0px 1px 3px 0px #FFCC0030, 0px 5px 5px 0px #FFCC0030, 0px 11px 7px 0px #FFCC0030;
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.header .btn {
    background-color: #ffffff;
    color: #d4af37;
    border: none;
}

.header .btn:hover {
    background-color: #e2e6ea;
    color: #d4af37;
}

footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    color: #ffffff;
    margin-top: auto; /* Garante que o footer fique no final da página */
}

.container-fluid {
    margin-top: 20px;
    flex: 1;
}

@media (max-width: 768px) {
    #sidebar-wrapper {
        margin-left: -250px;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        margin-left: 0;
    }

    #wrapper.toggled #page-content-wrapper {
        margin-left: 250px;
    }

    #menu-toggle {
        position: fixed;
        top: 10px;
        left: 10px;
        background-color: #343a40;
        color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
    .pagination .page-link {
        font-size: 0.875rem; /* Tamanho menor */
        padding: 0.4rem 0.8rem; /* Ajusta o espaçamento */
    }
    
    
}

    /* Reseta o tamanho global de ícones */
    i, .fa, .fas, .bi {
        font-size: 1rem; /* Define o tamanho padrão (ajuste conforme necessário) */
        line-height: 1; /* Garante que o ícone não tenha espaçamento vertical adicional */
        width: auto; /* Remove largura fixa */
        height: auto; /* Remove altura fixa */
    }
    /* Ajustes finais */
    i, .fa, .fas, .bi {
        font-size: 1rem; /* Tamanho padrão */
        line-height: 1;
        width: auto;
        height: auto;
    }
    
    i {
        font-size: inherit; /* Herda o tamanho padrão do texto */
    }