

.sales-search-section {
    padding: 5px;
    margin-bottom: 15px;
    background: rgb(67 71 80 / 85%);
    border-radius: 2px;
}

.sales-search-form {
    display: flex;
    justify-content: center;
}

.sales-field-container-left {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
}


.sales_search_form {
    display: flex;
    justify-content: center;
}



.sales-field-container-right {
    width: 10%;
    margin-left: 5px;
}



/* /////////////// */
/*   SALES TABLE   */
/* /////////////// */


.sales__th {
    font-family: "CeraRoundProBold";
    padding: 8px;
    background: #dce4c0;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #4f4b18;
    
}

.sales__td {
    padding: 7px;
    font-size: 14px;
    font-style: italic;
    color: #000;
    background: #efefef;
    text-align: center;
}

.sales__td span {
    color: #a63030;
}





/* Form Header */
.sales__form__text__header {
	text-align: center;
	font-size: 25px;
    margin-bottom: 25px;
	padding: 10px 0;
    color: #a9a9a9;
}




.sales-table-links {
    text-align: center;
    margin-top: 20px;
}


.sales-table-links a {
    color: #129a5d;
    font-family: "Product Sans Medium" sans-serif;
    /* padding-right: 10px; */
}

.sales-table-links a i {
    margin-left: 8px;
}

/* 
.sales-table-links a:hover {
    border-bottom: 1px solid  #129a5d;
} */







/* NEW SALES LIST (from table to grid) */

.sales-list-container {
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
}

.sales-list {
    display: flex;
    align-items: flex-start;
    height: 120px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.sales-list-image {
    height: 100%;
    width: auto;
    border: 1px solid #000;
    border-radius: 2px;
    margin-right: 5px;
    box-sizing: border-box;
}

.sales-grid-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.sales-grid-item {
    text-align: center;
    display: grid;
}

.s-grid-label {
    font-family: "CeraRoundProBold";
    font-size: 15px;
    color: #516d50;
    background: #dce4c0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.s-grid-value {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efefef;
    font-style: italic;
    font-size: 14px;
}