html, body {
	height: 100%;
	margin: 0;
}
header {
	background-color: #27F5AD;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	gap: 8px;
	padding: 2px 10px;
	min-height: 10vh;
	position: sticky;
	top: 0;
	z-index: 1000;
}
main {
	display: flex;
	flex-direction: column;
	background-color: white;
	height: 90vh;
}

main h1 {
	text-align: center;
	align-items: center;
	justify-content: center;
}
main h2 {
	text-align: center;
}
main div {
	margin-top: auto;
	font-size: 28px;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.menu,
.filter {
	flex-shrink: 0;
}

.menu {
	cursor: pointer;
}

.menu div{
	height: 4px;
	background: black;
	margin: 6px 0;
}

.sidebar {
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100vh;
	background: #222;
	padding-top: 60px;
	transition: left 0.3s ease;
	z-index: 1000;
}

.sidebar a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 12px 20px;
}

.sidebar.show {
	left: 0;
}

.sidebar a:hover {
	background: #444;
}

.filter {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
}
.filter div{
	height:4px;
	background: black;
	margin: 2px 0;
}
.filter1 { width: 30px;}
.filter2 { width: 20px;}
.filter3 { width: 10px;}

.menu .label,
.filter .label {
	height: auto !important;
	background: none !important;
	margin-bottom: 2px;
}
header form {
	min-width: 0;
	display: flex;
	align-items: center;
	background: white;
	padding: 6px;
	border-radius: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
header input{
	min-width: 0;
	font-size: 18px;
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 16px;
	border-radius: 30px;
	background: transparent;
}
header input::placeholder {
	color: #888;
}
header button {
	border: none;
	background: #1e293b;
	color: white;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	padding: 10px 16px;
	transition: background 0.3s ease;
}
body {
	display: flex;
	flex-direction: column;
}
