.filter-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 22px;
}

.filter-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	flex-shrink: 0;
}

.filter-buttons button {
	padding: 6px 12px;
	cursor: pointer;
	border: 1px solid #444;
	background-color: #f0f0f0;
	color: #444;
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.15s ease-in-out;
}

.filter-buttons button:hover {
	background-color: #f6f6ff;
}

.filter-buttons button.active {
	background-color: #444;
	color: #fff;
}

#searchInput {
	flex: 1 1;
	min-width: 200px;
	padding: 6px 12px;
	font-size: 14px;
	border: 1px solid #444;
	border-radius: 4px; 
}

table#wine-list {
	border-collapse: collapse;
	width: 100%;
	margin-top: 10px;
}

table#wine-list tbody tr:hover {
	cursor: pointer;
	background-color: #f6f6ff;
}

table#wine-list th, table#wine-list td {
	border-width: 0 0 1px 0;
	border-color: #aaa;
	border-style: solid;
	padding: 10px 0;
	text-align: left;
}

table#wine-list th { 
	padding-top: 0;
	border-width: 0 0 2px 0;
	font-weight: 600;
}

th#hd-id {
	width: 7%;
}

th#hd-wine {
	width: 71%;
}

th#hd-size {
	width: 10%;
}

th#hd-state {
	width: 12%;
}

table#wine-list td a { 
	text-decoration: none;
}

#noResults {
	display: none;
	font-weight: 600;
}

.light {
	color: #ccc;
}