.fixed-members {
	margin-bottom: 20px;
}

.fixed-members img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-right: 10px;
}

.fixed-members .member {
	margin-bottom: 10px;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f5f5f5;
	color: #333;
	margin: 0;
	padding: 20px;
}

h1 {
	text-align: center;
	color: #0056b3;
}

label {
	font-size: 1.2em;
	margin-bottom: 10px;
	display: block;
}

select {
	padding: 10px;
	font-size: 1em;
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.table-container {
	display: none;
	margin-top: 20px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	overflow-x: auto;
}

.table-container.active {
	display: block;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid #ddd;
}

th {
	background-color: #0F823F;
	color: #fff;
}

.mem-img {
	width: 100px;
	height: auto;
	border-radius: 5px;
}

.contact-link {
	color: #0056b3;
	text-decoration: none;
}

.contact-link:hover {
	text-decoration: underline;
}

.village-dropdown {
	margin-bottom: 15px;
	padding: 8px;
	font-size: 1em;
	width: 100%;
	max-width: 200px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 5px;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
	.table-container {
		padding: 10px;
	}

	table {
		width: 100%;
		display: block;
	}

	th,
	td {
		padding: 5px;
		font-size: 0.9em;
	}

	.mem-img {
		width: 70px;
	}
}

@media (max-width: 480px) {

	th,
	td {
		font-size: 0.8em;
	}

	.mem-img {
		width: 50px;
	}
}