.filter-container{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

#categoryFilter, #functionFilter, #applianceFilter {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(https://uk.instantbrands.com/wp-content/uploads/2024/02/red-chevron.png) no-repeat center / contain;
	background-size: 15px;
	background-position: calc(100% - 10px);
}

.input-group{
	display: inline-block;
}

.input-group label{
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #e02826;
	text-align: center;
}

#typeFilter,
#categoryFilter,
#applianceFilter,
#functionFilter {
	width: 15rem;
	background-color: #FFF;
	border:solid 1px #000;
	padding: 0 10px;
}

.category-text-container {
	margin-left: 10%;
	margin-right: 10%;
	text-align: center;
	margin-top: 1rem;
}

.category-name {
	font-size: 1.25rem;
    font-weight: bold;
}

.category-note{
	color: #da2939;
}


@media screen and (min-width: 769px){
	#cookingTable thead,
	.functions-table-container table thead{
		font-size: 1.5rem;
	}
	
	#cookingTable thead tr th,
	.functions-table-container table thead tr th{
		padding: 1rem;
	}
	
	#cookingTable tbody tr td,
	.functions-table-container table tbody tr td{
		padding: 0.75rem;
	}
}

@media screen and (max-width: 768px){
	
	#typeFilter,
	#categoryFilter,
	#applianceFilter,
	#functionFilter{
		width: 20rem;
	}
	
	#cookingTable thead,
	.functions-table-container table thead{
		font-size: 0.9rem;
	}
	
	#cookingTable tbody,
	.functions-table-container table tbody{
		font-size: 0.65rem;
	}
	
	#cookingTable thead tr th,
	.functions-table-container table thead tr th{
		padding: 0.75rem;
	}
	
	#cookingTable tbody tr td,
	.functions-table-container table tbody tr td{
		padding: 0.5rem;
	}
	
}

@media screen and (max-width: 425px){
	
	#typeFilter,
	#categoryFilter,
	#applianceFilter,
	#functionFilter{
		width: 17.5rem;
	}
	
	#cookingTable thead,
	.functions-table-container table thead{
		font-size: 0.75rem;
	}
	
	#cookingTable tbody,
	.functions-table-container table tbody{
		font-size: 0.5rem;
	}
	
	#cookingTable thead tr th,
	.functions-table-container table thead tr th{
		padding: 0.5rem;
	}
	
	#cookingTable tbody tr td,
	.functions-table-container table tbody tr td{
		padding: 0.25rem;
	}
	
}

.cooking-table-container,
.functions-table-container{
	margin-top: 2.5rem;
}

#cookingTable,
.functions-table-container table{
	margin: auto;
	text-align: center;
	position: relative;
}

#cookingTable thead,
.functions-table-container table thead{
	background: #da2939;
	color: #ffffff;
}

#cookingTable tbody,
.functions-table-container table tbody{
	font-weight: bold;
}

#cookingTable tbody tr:hover{
	color: #DA2947;
	cursor: pointer;
}

#cookingTable th, 
#cookingTable td,
.functions-table-container table th,
.functions-table-container table td{
	border: 1px solid black;
}

#cookingTable tr:nth-child(even) {
	background-color: #E8E8E8;
}