.body {
    font-size: 15px; /* Tamanho da fonte */
    font-family: "Montserrat", sans-serif; /* Fonte Montserrat */
    font-weight: 700; /* Negrito */
}
#custom-table {
    margin: 20px auto;
    border-collapse: collapse;
    margin-left: 15px;
    background-color: white;
}


.custom-table th,
.custom-table td {
    padding: 8px 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.custom-table th {
    background-color: #f4f4f4;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.texto-nao-definido {
    color: #e94545;
    font-weight: bold;
}



#style-button-voltar { 
    background-color: #0056b3;
    color: white; 
    border: 2px solid #0056b3; 
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 13px; 
    margin-left: 6px;
    font-weight: bold; 
    text-decoration: none; 
    display: inline-block; 
    transition: all 0.3s ease; 
}

#style-button-voltar:hover {
    background-color: #0056b3; 
    color: #fff; 
    border-color: #003f7f; 
    text-decoration: none; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

#style-button-voltar:active {
    background-color: #004080; 
    border-color: #002850; 
}


#titulo-pagina {
    padding-left: 15px; 
    margin-bottom: 5px; 
}


#search-container {
    display: flex;
    justify-content: flex-end;
}


#search-input-group {
    width: 250px;
}


#search-icon {
    background-color: #1a5983;
    color: white;
    cursor: pointer;
}

#search-icon:hover {
    background-color: #144b6b;
}

.style-voltar {
    padding-left: 15px;
}

#custom-table-notas {
    margin: 20px auto;
    border-collapse: collapse;
    width: 98%;
    margin-left: 15px;
    background-color: white;
}

#custom-table-pedidos {
    margin: 20px auto;
    border-collapse: collapse;
    width: 99%;
    margin-left: 15px;
    background-color: white;
}






@media (max-width: 992px) {

    #style-button-voltar {
        margin: 10px auto;
        text-align: center;
    }

    #search-container {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    #search-input-group {
        display: flex;
        justify-content: center;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .table-responsive {
        overflow-x: auto;
        display: block;
        white-space: nowrap;
        touch-action: auto; 
        -ms-overflow-style: none; 
        scrollbar-width: none;
    }

    #pagination-style {
        display: flex;
        justify-content: center;
    }
}


@media (max-width: 768px) {
    #titulo-pagina {
        font-size: 25px;
    }

    #style-button-voltar {
        font-size: 14px;
        padding: 5px 10px;
    }

    #search-input {
        font-size: 14px;
    }

    #pagination-style .page-item {
        font-size: 12px;
    }


    #pagination-style .page-link {
        padding: 5px 8px;
    }
}

@media (max-width: 576px) {
    #titulo-pagina {
        font-size: 25px;
    }

    #style-button-voltar {
        font-size: 12px;
        margin-left: 8px;
    }

    #search-input-group {
        width: 100%;
    }

    .table thead tr th:nth-child(3),
    .table tbody tr td:nth-child(3),
    .table thead tr th:nth-child(4),
    .table tbody tr td:nth-child(4) {
        display: none;
    }

    #pagination-style {
        flex-wrap: wrap;
        margin-left: 0px;
    }
}

