.container {
	max-width: 1200px;
	margin: 40px auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.header_inner {
	background: #48a1cf;
	color: #fff;
	padding: 20px;
	text-align: center;
}
.header_inner h1 {
	margin: 0;
	font-size: 24px;
}
.content_inner {
	padding: 20px;
}
.content_inner h2 {
	color: #48a1cf;
	font-size: 20px;
	margin-top: 0;
}
.content_inner p {
	margin-bottom: 15px;
}
.content_inner ul {
	list-style: none;
	padding: 0;
}
.content_inner ul li {
	background: #f0f8ff;
	border: 1px solid #dfeeff;
	border-radius: 4px;
	padding: 10px 10px 10px 40px;
	margin-bottom: 10px;
	position: relative;
}
.content_inner ul li::before {
	content: "✓";
	color: #48a1cf;
	font-weight: bold;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
}
.content_inner ul li:hover {
	background: #e8f5ff;
}
.content_inner ul li strong {
	font-weight: bold;
	width: 270px; 
	display: block; 
	float: left; 
	margin-right: 10px;
}
.dropdown-content a:hover {
	background-color: #f2f8ff;
	color: #007bff;
}

.edit-member:hover {
	color: #0056b3;
}
.delete-member:hover {
	color: #e60000;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background: #fff;
	margin: 10% auto;
	padding: 20px 30px;
	border-radius: 8px;
	width: 400px;
	max-width: 90%;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.modal-content h2 {
	margin-top: 0;
	font-size: 20px;
	color: #333;
}

.modal-content input[type="text"],
.modal-content input[type="file"] {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.btn {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
}

.btn-blue { background-color: #007bff; color: #fff; border: none; }
.btn-green { background-color: #28a745; color: #fff; border: none; }
.btn-grey  { background-color: #ccc; color: #333; border: none; }

.btn:hover { opacity: 0.9; }

#loadingOverlay {
	transition: opacity 0.3s ease;
}

.pagination-container {
	text-align: center;
	margin-top: 25px;
	font-family: 'Arial', sans-serif;
}

.pagination-form {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.page-label {
	font-size: 14px;
	color: #555;
}

.page-btn {
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid #007bff;
	color: #007bff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: 0.2s;
}

.page-btn:hover {
	background: #007bff;
	color: #fff;
}

.page-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	border-color: #ccc;
	color: #aaa;
	background: #f8f8f8;
}

.page-select-wrapper {
	position: relative;
	display: inline-block;
}

.page-select {
	padding: 6px 32px 6px 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 14px;
	appearance: none;
	background-color: #fff;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.page-select:hover {
	border-color: #007bff;
}

.page-select:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

.page-select-arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 10px;
	color: #777;
	pointer-events: none;
}

.edit-member, .delete-member {
	cursor: pointer;
	transition: transform 0.1s ease;
}
.edit-member:hover { color: #0056b3; transform: scale(1.1); }
.delete-member:hover { color: #b30000; transform: scale(1.1); }