* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}
body {
    display: flex;
	height: 350px;
	justify-content: center;
	align-items: center;
	background-color: #f4f4f4;
}

.card {
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-container {
	width: 500px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.login-container h3 {
	text-align: center;
	margin-bottom: 20px;
}
.input-group {
	margin-bottom: 15px;
}
.input-group label {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
}
.input-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
}
.btn {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background: #007bff;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.btn:hover {
	background: #0056b3;
}
.error {
	color: red;
	text-align: center;
	margin-bottom: 10px;
}
.links {
	text-align: center;
	margin-top: 10px;
}
.links a {
	color: #007bff;
	text-decoration: none;	
}
.links a:hover {
	text-decoration: underline;
}
.container {
            max-width: 1200px;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);		
}
.navbar {
	display: flex;
	justify-content: space-between;
	background: #007bff;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
}
.navbar a {
	color: white;
	text-decoration: none;
	padding: 8px 15px;
}
.navbar a:hover {
	background: #0056b3;
	border-radius: 5px;
}
h2 {
	text-align: center;
}
form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
input, select, button {
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
button {
	background-color: #28a745;
	color: white;
	border: none;
	cursor: pointer;
}
button:hover {
	background-color: #218838;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
th, td {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}
th {
	background-color: #007bff;
	color: white;
}
tr:hover {
	background-color: #f1f1f1;
}
.actions a {
	margin-right: 10px;
	text-decoration: none;
	color: #007bff;
}
.actions a:hover {
	text-decoration: underline;
}