body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f0f2f5;
	
}

.menu-container {
	background-color: #333;
	overflow: hidden;
	display: flex; /* Use flexbox to align logo and menu items */
	align-items: center; /* Center items vertically */
}

.logo-container {
	padding: 10px; /* Adds some space around the logo */
}

table {
	font-size: 14px;
}

h2 {
	text-align: center
}

.results-summary {
	text-align: center;
	font-size: 14px;
}

.logo {
	height: 50px; /* Adjusts the logo's size, you can change this as needed */
	width: auto; /* Maintains the logo's aspect ratio */
}

.menu-list {
	list-style-type: none; /* Removes bullet points */
	margin: 0;
	padding: 0;
	display: flex; /* Display menu items in a row */
}

.menu-item {
	margin-left: 20px; /* Adds spacing between menu items, adjust as needed */
}

.menu-item a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.menu-item a:hover {
	background-color: #ddd;
	color: black;
}

/* Burger Menu Styles */
.burger-menu {
	display: none;
	cursor: pointer;
}

.burger-menu div {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 6px 0;
	transition: 0.4s;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
	.burger-menu {
		display: block;
	}

	.menu-list {
		position: absolute;
		right: 0;
		top: 60px;
		flex-direction: column;
		width: 200px;
		background-color: #333;
		display: none;
	}

	.menu-item {
		margin: 0;
		text-align: center;
	}

	.menu-item a {
		padding: 10px;
	}

	.menu-list.active {
		display: flex;
	}
}

/* Burger Menu Hover Effect */
.burger-menu:hover div {
	background-color: #ddd; /* Lighter color on hover */
}

/* Burger Menu "X" Icon Transformation */
.burger-menu.active div:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active div:nth-child(2) {
	opacity: 0;
}

.burger-menu.active div:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}


/* Style the search input and select dropdown consistently */
.search-form input[type="text"],
.search-form select {
	padding: 10px;
	margin-right: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	width: auto; /* Adjust width as needed, or use 'auto' for flexibility */
}

/* Style for the search button to align with the inputs */
.search-form button {
	padding: 10px 15px;
	background-color: #2196F3;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/* Add a hover effect for the button for better user interaction */
.search-form button:hover {
	background-color: #0b7dda;
}

.status {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 15px;
	color: #fff;
	font-weight: bold;
}

.approved { background-color: #4CAF50; }
.pending { background-color: #f38d28; }
.rejected { background-color: #F44336; }


.action-btn {
	display: inline-block;
	margin: 0 5px;
	padding: 5px 10px;
	text-decoration: none;
	color: #fff;
	border-radius: 5px;
	font-size: 0.8em;
}

.approve-btn {
	background-color: #4CAF50; /* Green */
}

.reject-btn {
	background-color: #F44336; /* Red */
}

/* General Table Styles */
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

th, td {
	text-align: left;
	padding: 8px;
	border: 1px solid #ddd;
}

th {
	background-color: #f2f2f2;
}

tr:nth-child(even) {
	background-color: #f9f9f9;
}

tr:hover {
	background-color: #f1f1f1;
}

/* Search Filter Form Styles */
.search-filter-form {
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-end;
}

.search-filter-form input[type="text"],
.search-filter-form select {
	padding: 10px;
	margin-right: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.search-filter-form button {
	padding: 10px 15px;
	background-color: #2196F3;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.search-filter-form button:hover {
	background-color: #0b7dda;
}

/* Adjustments for Responsiveness */
@media (max-width: 768px) {
	.search-filter-form {
		flex-direction: column;
		align-items: stretch;
	}

	.search-filter-form input[type="text"],
	.search-filter-form select,
	.search-filter-form button {
		margin-top: 10px;
		margin-right: 0;
		width: 100%; /* Full width for mobile */
	}
}

/* Custom Pagination Styles */
.pagination {
	display: flex;
	justify-content: center;
	list-style: none;
}

.pagination li {
	margin: 0 5px;
}

.pagination li a {
	color: #007bff;
	text-decoration: none;
	padding: 8px 12px;
	border: 1px solid #007bff;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.pagination li.active a {
	background-color: #007bff;
	color: #fff;
	border-color: #007bff;
}

.pagination li.disabled a {
	color: #ccc;
	pointer-events: none;
	background-color: #f5f5f5;
	border-color: #f5f5f5;
}

.pagination li a:hover {
	background-color: #007bff;
	color: #fff;
}


/* Button Styles */
.btn {
	padding: 10px 15px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none; /* Removes underline from links styled as buttons */
	font-size: 1em;
	margin-right: 10px;
	margin-bottom: 10px;
}

.btn:hover {
	background-color: #45a049;
}

/* Existing styles for form-row and inputs */
.form-row {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap; /* Allows content to wrap to the next line */
}

.form-row label {
	flex-basis: 100%; /* Makes the label take the full width on its line */
	margin-bottom: 10px; /* Adds some space between the label and the select box */
}

.form-row.full-width {
	flex-basis: 100%; /* Ensures the row takes full width */
	width: 100%; /* Ensures the row takes full width */
}

.form-row.full-width select {
	width: 100%; /* Ensures the select element takes full width of its container */
	padding: 8px; /* Keeps padding consistent with other input fields */
	border: 1px solid #ccc;
	border-radius: 4px;
	height: auto; /* Adjusts height based on the content */
	min-height: 100px; /* Ensures it starts with enough space to show multiple options */
}

.form-row input[type="text"],
.form-row input[type="password"],
.form-row input[type="email"],
.form-row select {
	flex-grow: 1;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* New or updated styles */
.form-row select#categories {
	height: auto; /* Adjust based on the desired appearance */
	min-height: 100px; /* Minimum height to display multiple options */
}

/* Ensure the select element grows to fill the flex container */
.form-row select {
	width: 100%; /* This ensures the select element takes the full available width */
}


#categories {
	height: 100px; /* Adjust the height to display multiple options */
}

/* Search Form Styles */
.search-form {
	display: flex;
	align-items: center;
}

.search-form input[type="text"] {
	padding: 10px;
	margin-right: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	width: 200px; /* Adjust width as needed */
}

.search-form button {
	padding: 10px 15px;
	background-color: #2196F3;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.search-form button:hover {
	background-color: #0b7dda;
}

/* Table Styles */
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

table, th, td {
	border: 1px solid #ddd;
}

th, td {
	text-align: left;
	padding: 8px;
}

th {
	background-color: #f2f2f2;
}

tr:nth-child(even) {
	background-color: #f9f9f9;
}

tr:hover {
	background-color: #f1f1f1;
}

/* Top Bar Styles */
.top-bar {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}


/* Users Container Styles */
.users-container {
	width: 90%; /* Adjust the width as needed */
	max-width: 1200px; /* Ensures the container doesn't get too wide on large screens */
	margin: 30px auto; /* Centers the container and adds vertical spacing */
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
	border-radius: 8px; /* Softens the corners for a modern look */
}


p.error-message {
	font-size: 14px;
	/* border: 1px solid red; */
	color: white;
	padding: 10px;
	border-radius: 20px;
	background: red;
}

.dashboard-container {
	padding: 20px;
	text-align: center;
}

h1 {
	color: #333;
}

h2 {
	font-size: 16px;
}


.login-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; /* Make sure the container takes up the full viewport height */
	margin: 0; /* Remove default margin */
}

.login-container {
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	text-align: center;
	width: 300px;
}

.login-logo img {
	max-width: 100%;
	height: auto;
}

.login-form {
	margin-top: 20px;
}

.form-group {
	text-align: left;
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.9em;
	color: #333;
}

.form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
}

.login-button {
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
}

.login-button:hover {
	background-color: #0056b3;
}
