/* styles.css */

body {
	font-family: "Arial", sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 0;
	color: #333;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	background: #4caf99;
	color: white;
	padding: 20px 0;
	text-align: center;
}

.logo {
	width: 100px;
	/* Adjust the size of the logo as needed */
}

nav {
	background: #cd853f;
	color: white;
	display: flex;
	justify-content: center;
	padding: 15px 0;
}

nav a {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	transition: color 0.3s;
}

nav a:hover {
	color: #4caf99;
}

main {
	padding: 20px;
	text-align: left;
	flex: 1;
	overflow-y: auto;
}

button {
	background-color: #4caf99;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #45a049;
}

footer {
	text-align: center;
	padding: 10px 0;
	background-color: #cd853f;
	color: white;
	/* position: absolute; */
	width: 100%;
}
