* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: system-ui, sans-serif;
	font-size: 1.3rem;
	min-height: 100vh;

	padding: 1rem;
	background-color: black;
}
a {
	color: black;
	font-weight: 900;
}
.container {
	max-width: 900px;
	margin: 0 auto;
}
.search-box {
	padding: 2rem;
	margin-bottom: 2rem;
	background-color: white;
}
.search-box label {
	font-size: 1.2rem;
}
.search-box input {
	width: 100%;
	font-size: 2rem;
	border: none;
	border-bottom: #000 2px solid;
	outline: none;
	transition: border-color 0.5s;
}
.search-box input:focus {
	border-color: white;
}
table {
	width: 100%;
	border-collapse: collapse;
	background-color: white;
}
td {
	padding: 1rem;
}
.badge {
	display: inline-block;
	background: #FFD700;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 1rem;
	font-weight: 600;
	margin-left: 0.5rem;
}
header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: white;
	padding: 1rem;
	margin-bottom: 2rem;
}
header div {
	flex: 1;
	text-align: center;
}
section {
	background-color: white;
	margin-bottom: 2rem;
	padding: 1rem;
}
button {
	background: #FFD700;
	color: black;
	border: none;
	padding: 0.7rem 1.2rem;
	font-size: 1.2rem;
	font-weight: 600;
}
button[type="submit"] {
	width: 100%;
}
section form label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	margin-bottom: 8px;
	cursor: pointer;
}
section form label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin-right: 1rem;
}
select {
	flex: 1;
	padding: 14px 16px;
	font-size: 15px;
	border: 2px solid #e0e0e0;
	outline: none;
	background: white;
}

ul {
	margin-top: 1rem;
}

ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	margin-bottom: 8px;
}

ul li button {
	padding: 6px 12px;
	background: #ff4444;
	color: white;
	font-size: 14px;
	min-width: auto;
}
.login-form {
	background-color: white;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	gap: 1rem;
}
.login-form input {
	width: 100%;
	font-size: 1.7rem;
}
.stats {
	display: flex;
	gap: 1rem;
	align-items: stretch;
	width: 100%;
	margin-bottom: 1rem;
}
.stats .card {
	background-color: white;
	flex: 1;
	padding: 1rem;
}
.report-table {
	font-size: 1rem;
	overflow: scroll;
}
@media (max-width: 600px) {
	.add-form {
		flex-direction: column;
	}
	.stats {
		flex-direction: column;
	}
}
