.client-sales-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HEADER */
.client-sales-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-sales-title {
    font-size: 24px;
}

/* TOTAL */
.client-sales-total {
    background: #fff;
    padding: 16px 20px;
    border-radius: 4px;
    text-align: right;
}

.client-sales-total span {
    display: block;
    font-size: 13px;
    color: #555;
}

.client-sales-total strong {
    font-size: 20px;
    color: #1e8e3e;
}

/* TABELA */
.client-sales-table-wrapper {
    background: #fff;
    padding: 16px;
    border-radius: 4px;
}

.client-sales-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.client-sales-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.client-sales-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* STATUS */
.client-sales-status {
    padding: 4px 10px;
    font-size: 20px;
    border-radius: 12px;
    font-weight: bold;
}

.client-sales-status.approved {
    background: #e6f4ea;
    color: #1e8e3e;
}

.client-sales-status.pending {
    background: #fff4e5;
    color: #b26a00;
}

.client-sales-status.canceled {
    background: #fdecea;
    color: #c0392b;
}




/* FINALIZAR VENDA */


.box_info_sale{
    background-color: #fff;
    padding: 15px;
}

.list_products{
    margin-top: 20px;
    border-top: 1px solid #bbb;
    padding: 15px;
}

.sale_cover img{
    width: 200px;
    height: 200px;
}

.info_list_products_sale{
    padding: 0 10px;
}

.info_list_products_sale span{
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.btn_confirm_code{
    margin: 15px 0;
    padding: 15px 25px;
    background-color: #3483FA;
    color: #fff;
    cursor: pointer;
}

.info_price_sale_item span{
    display: block;
}

.highlighted_price{
    font-size: 25px;
    color: #3483FA; 
}

.info_price_sale_item span{
    margin-bottom: 10px;
}

.success{
    background-color: #1e8e3e;
}

.warning{
    background-color: #b26a00;
}

.code_confirmation{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #bbb;
    margin-bottom: 10px;
}


@media screen and (max-width: 764px){
    .info_price_sale_item{
        width: 100%;
        margin-top: 20px;
    }

    .info_list_products_sale{
        width: 100%;
        margin-top: 20px;
    }

    .btn_confirm_code{
        width: 100%;
        text-align: center;
    }

    .justify_start_mobile{
        justify-content: flex-start;
    }

    .sale_cover img{
        width: 100%;
    }
}