#filter-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding-bottom: 1.6rem;
	border-bottom: 1px solid #ccc;
}

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

#filter-buttons button {
	padding: 0.4rem 0.8rem;
	cursor: pointer;
	border: 1px solid #444;
	background-color: #f0f0f0;
	color: #444;
	border-radius: 4px;
	font-size: 0.85rem;
	transition: all 0.2s ease-in-out;
}

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

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

#wine-search {
	flex: 1 1;
	padding: 0.2rem 0.8rem;
	min-width: 200px;
	font-size: 0.85rem;
	border: 1px solid #444;
	border-radius: 4px; 
}

.wine {
	border-bottom: 1px solid #ccc;
	padding-bottom: 1.6rem;
	margin-top: 1.2rem;
}

.wine p { 
	margin: 0;
}

.summary {
	display: flex;
}

.summary div {
	vertical-align: middle;
	line-height: 18px;
	height: 18px;
	margin-top: 18px;
}

.summary div:nth-of-type(odd) {
	width: 18px;
	margin-right: 10px;
}

.summary div:nth-of-type(even) {
	width: 30px;
	margin-right: 20px;
}

.summary div svg {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.n {
	color: #ddd;
}

.y svg {
	stroke: #444;
}			

.n svg {
	stroke: #ddd;
}

.region {
	display: block;
	padding-top: 0.85rem;
	font-size: 0.85rem;
	color: #888;
}

.region a {
	text-decoration: none;
}

.region a:hover {
	text-decoration: underline;
}

