﻿.sales-item-card {
    position: relative;
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin: .5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.sales-item-card:hover {
    transform: scale(1.05);
}

.sales-item-card img {
    width: 100%;
    height: auto;
    
    max-height: 200px;
    object-fit: cover;
}

.sales-item-card-content {
    padding: 16px;
}

.sales-item-card-content p {
    margin: 0;
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sales-item-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    
}


.sales-item-card-header {
    font-size: 1.5em; 
    font-weight: bold;
    margin-bottom: 10px;
}
.sales-item-card-price {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}


.sales-item-card-label {
    font-size: 1.5em; 
    margin-bottom: 10px;
}

/*.outstanding-bills-card {*/
/*    position: relative;*/
/*    width: 300px;*/
/*    background-color: #fff;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    margin: .5rem;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*    transition: transform 0.3s ease-in-out;*/
/*    display: flex; !* Make it a flex container *!*/
/*    flex-direction: column; !* Stack children vertically *!*/
/*}*/

/*.outstanding-bills-card:hover {*/
/*    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);*/
/*}*/

.outstanding-bills-card {
    position: relative;
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin: .5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.outstanding-bills-card:hover {
    transform: scale(1.05);
}

.outstanding-bills-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
    flex-grow: 1; /* Make it grow to fill available space */
}

.outstanding-bills-location-information {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.outstanding-bills-total {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.outstanding-bills-card p {
    margin: 0;
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
