body {
    font-family: Arial, sans-serif;
}

h1 {
    color: red;
}

.container {
    display: flex;
}

.sidebar {
    width: 250px;
    border-right: 1px solid #ccc;
    padding: 20px;
}

.content {
    flex-grow: 1;
    padding: 20px;
}

.filter-section {
    margin-bottom: 20px;
    /* border: 1px solid black; */
}

.filter-section h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 5px;
}

.product-listings {
    flex-grow: 1;
    padding-left: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left; /* Align text to the left */
}

th {
    background-color: #f2f2f2;
}

.product-item:nth-child(odd) {
    background-color: #f9f9f9;
}

.product-item:nth-child(even) {
    background-color: #ffffff;
}

img {
    margin-right: 10px;
    vertical-align: middle;
}

/* Add custom styles for the right-aligned product column if needed */
td.product-column {
    text-align: right; /* Align the product details to the right */
}

.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    padding: 3px;
    border-radius: 5px;
}

.progress-bar {
    height: 20px;
    background-color: #4caf50;
    width: 0%;
    border-radius: 5px;
    transition: width 2s;
}