.product-table-container {
    /* flex: 1; */
    /* overflow-y: auto; */
    /* display: flex; */
    /* flex-direction: column; */
    margin-left: 3px;
    height: 700px;
    border-radius: 0px;
    font-size: 18px;
}

.summary-column {
    flex-shrink: 0;
    margin-top: auto;
}

.container-fluid {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-table {
    flex: 1;
    scrollbar-width: thin;
    overflow-y: auto;
    scrollbar-color: #5eb9e4 #f1f1f1;
    height: 100%;
    padding: 0px;
    /* height: calc(100vh-650px); */
}

.table thead th {
    position: sticky;
    top: 0;
    /* padding: 12px; */
    background-color: #333333;
    color: white;
    z-index: 100;
    font-size: 22px;
    padding: 10px;
}

.table tbody td {
    background-color: #4e4e4e;
    color: white;
    font-size: 20px;
    padding: 10px;
}

/* Delete Confirmation Modal */
.delete-confirm-modal .modal-content {
    border: 3px solid #dc3545;
    border-radius: 10px;
}

.delete-confirm-modal .modal-header {
    background-color: #dc3545;
    color: white;
}

/* Clear button styling */
.input-group-clear .input-group-text {
    cursor: pointer;
    background-color: #f8f9fa;
}

.input-group-clear .input-group-text:hover {
    background-color: #e9ecef;
}

/* Ensure the parent uses flex so order works */
.container-fluid>.row {
    display: flex;
    flex-wrap: nowrap;
    /* keep single row */
    height: 100%;
}

/* .summary-column { */
/* position: sticky; */
/* bottom: 0; */
/* background-color: white; */
/* z-index: 10; */
/* height: auto; */
/* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); */



/* background-color: #f8f9fa; */
/* border-top: 2px solid #dee2e6; */
/* padding: 15px; */
/* min-height: 60px; */
/* height: var(--summary-height, 60px); */
/* flex-shrink: 0; */
/* Prevent shrinking */
/* } */

/* Footer cards */

/* .left-bottom {
    height: 200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.stat-card {
    background-color: #1e1e1e;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #333;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.stat-label {
    font-size: 12px;
    color: #aaaaaa;
    margin-top: 5px;
} */