﻿#filterInput {
    background-image: url('images/searchicon.png'); /* Add a search icon to input */
    background-position: 3px 6px; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    width: 100%; /* Full-width */
    font-size: 16px; /* Increase font-size */
    padding: 12px 0px 12px 40px;
    border: 1px solid #ddd; /* Add a grey border */
    margin-bottom: 12px; /* Add some space below the input */
    box-sizing: border-box;
}

#productsTable {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#productsTable th, #productsTable td {
    border: 1px solid #ddd;
    padding: 8px;
}

#productsTable tr:nth-child(odd){background-color: #f6f7f9}

#productsTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #80a71d;
    color: white;
}