#content {
    display: flex;

}

body {
    display: flex;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
}


#filter-section {
    flex-shrink: 0; /* Prevent shrinking below content size */
    padding: 5px;
}

#listing-section {
    padding: 20px;
}

table {
    border-collapse: collapse;
    table-layout: fixed; /* Add this if you want strict adherence to your column widths */
}

th, td {
    text-align: left;
    padding: 4px;
    padding-right: 10px;
    border-bottom: 1px solid #F8F8F8;
    white-space: nowrap; /* Prevents text from wrapping, optional based on your content */
}

th {
    background-color: #F8F8F8; /* Optional: adds a background color to header */
    width: 60;
}

.filter-box {
    border: 1px solid #000;
    padding: 5px;
    margin-bottom: 20px;
    width: 140px;
}

.filter-header {
    /* Ensures that the filter-header div does not add unnecessary width or spacing */
    padding: 0;
    margin: 0;
    margin-top: -20px;
}

.filter-header h3 {
    /* Styles for the h3 tag to match the text width */
    background-color: #fff; /* Opaque white background */
    display: inline-block; /* Makes the background fit the content */
    padding: 5px; /* Adjust padding as needed for visual appeal */
    margin: 0; /* Reset any default margins */
    margin-top: 00px;
}


p {
  font-size: 10px;
}

.filter-box input[type="number"] {
    width: 80px; /* Set a fixed width for the input */
}
.filter-box input[name="min-size"] {
    margin-left:4px;
}
.filter-box input[name="min-price"] {
    margin-left:4px;
}

