@charset "utf-8";
/* CSS Document */

body {
	font-family: Arial, sans-serif;
	background: #f9f9f9;
	padding: 20px;
	color: #333;
}
h2 {
	color: #2c3e50;
}
a {
	text-decoration: none;
	color: #2980b9;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
}
table {
	border-collapse: collapse;
	width: 95%;
	margin-top: 20px;
	background: #fff;
}
th, td {
	padding: 10px;
	text-align: center;
	border: 1px solid #ddd;
}
th {
	background: blue;
	color: white;
}
tr:nth-child(even) {
	background: #f2f2f2;
}
fieldset {
	width: 60%;
	background: #fff;
	padding: 15px;
	border: 1px solid #ccc;
	margin-top: 20px;
}
input[type=text], textarea, input[type=number] {
	width: 100%;
	padding: 6px;
	margin-top: 5px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
input[type=submit] {
	padding: 8px 16px;
	background: #27ae60;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
input[type=submit]:hover {
	background: #2ecc71;
}
.delete-btn {
	color: red;
	font-weight: bold;
}