/* config-filter.css */

button.filter {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: black;
    background-color: white;
    border: 1px solid dimgrey;
}

button.filter.selected-filter {
    background-color: gold;
}

button.filter:hover {
    background-color: deepskyblue;
}

table.filter {
    width: 85%;
    border-spacing: 0;
}

tr.band {
    background-color: lavender;
}

table.filter td {
    margin: 0px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0px;
    padding-right: 0px;
}

table.filter td:first-child {
    padding-left: 16px;
}
