﻿.sales-item-card {
    position: relative;
    cursor: pointer;
    width: 320px;
    background-color: #ffffff; /* White background */
    border: 1px solid #2a7cb1; /* Oakville blue border */
    border-radius: 8px;
    padding: 1.5rem 1rem;
    margin: 1rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: "Roboto", sans-serif;
}


.sales-item-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem auto;
    object-fit: contain;
}

.sales-item-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sales-item-card-header {
    font-size: 1.3888rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.sales-item-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: #0072bc;
    margin: 0;
}

.sales-item-card-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.sales-item-card-content p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    max-height: 4.2em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sales-item-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
}

.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;
}
