/* styles.css */
body, h1, p, a {
	margin: 0;
	padding: 0;
	font-family: Lucida, Palatino, Sans-Serif;
}
/* Styling for the banner */
.banner {
	background-color: #536be3;
	color: #fff;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	height: 90px;
}
.logo {
	max-width: 70px;
	height: auto;
	margin-right: 20px;
}
.home {
	display: flex;
	align-items: center;
	margin-right: 25px;
}
/* To set user icon at the right side of the div*/
.icon {
	display: flex;
	align-items: center;
	margin-right: 25px;
}
/* Add styles for the dropdown menu */
.dropdown-menu {
	position: relative;
	display: inline-block;
	margin-right: 100px;
}
/* Style the submenu */
.submenu {
	display: none;
	position: absolute;
	background-color: #f0f0f0;
	min-width: 120px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
/* Style submenu items */
.submenu li {
	padding: 10px;
	text-align: center;
}
/* Show submenu on hover */
.icon:hover .submenu {
	display: block;
}
.button {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}
.footer {  
	position: fixed;
	height: 20px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	width: 100%;
	padding: 5px;
	background-color: #f4f6f9;
	color: black;
	text-align: center;
}
/* Styling for the index page */

.menu-container {
	text-align: center;
	margin-top: 20px;
	display: grid;
/*             grid-template-columns: auto auto auto auto; */
/*             grid-gap: 50px; */
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 20px;
	padding: 20px;
}
/* Styling for menu links */
.menu-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
	text-decoration: none;
	font-size: 18px;
	color: #536be3;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 25px;
	padding: 20px;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.menu-link:hover {
	background-color: #536be3;
	color: #f4f4f8;
}
.menu-icon {
	margin-right: 10px;
}

/* Styling for the index page */

/* Styling for the dashboard container(dashboard page) */
#dashboard-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
	margin: 20px;
	max-width: 100%;
	height: 75vh;
	overflow: hidden;
}

/* Styling for individual chart containers(dashboard page) */
.chart-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 25px;
}
.chart-container h4 {
	margin-top: 1px;
}
/* Styling for individual charts(dashboard page) */
.chart {
	max-width: 90%;
	max-height: 80%;
}
/* Styling for the tooltip container(dashboard page) */
.tooltip {
	display: none;
	position: absolute;
	font-size: small;
	background-color: #f0f0f0;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	z-index: 2;
}
/* Show the tooltip on hover(dashboard page) */
.chart:hover + .tooltip {
	display: block;
}
/* styles for downloaddata page */
.container {
	max-width: 1200px;
	margin: 20px auto;
	justify-content: center;
	padding: 30px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}
.filter-row label {
/*             flex: 1; */
	margin-bottom: 5px;
	font-size: 14px;
}
.filter-row select, .filter-row input[type="date"], .filter-row input[type="text"], .filter-row input[type="number"] {
	flex: 7;
	padding: 2px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 20%;
}
.filter-row button {
	flex: 5;
	background-color: #777;
	margin-bottom: 10px;
	color: #fff;
	border-radius: 5px;
	border: none;
	cursor: pointer;
}
.filter-row button:hover {
	background-color: #555;
}
.data-table {
	width: 100%;
	border-collapse: collapse;
}
.data-table th {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ccc;
	background-color: #777;
	color: #fff;
}
.data-table td {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
}
/* Style even rows */
.data-table tbody tr:nth-child(even) {
	background-color: #f2f2f2; /* Alternate color for even rows */
}
/* Style odd rows */
.data-table tbody tr:nth-child(odd) {
	background-color: #ffffff; /* Background color for odd rows (white in this case) */
}
/* styles for downloaddata page */
/* styles for new_user_2 page */
.container {
max-width: 1200px; Adjust the width as needed
margin: 0 auto; /* Center horizontally */
text-align: center; /* Center the content within the container */
padding: 20px;
}
.box-cell {
flex: 2;
margin: 10px;
}
.container .box {
display : flex;
flex-direction: row;
}
.container .box .box-cell.box1 {
background:rgb(238, 243, 238);
color:white;
text-align:justify;
}
.container .box .box-cell.box2 {
background:rgb(185, 226, 245);
text-align:justify;
}
/* styles for new_user_2 page */
/* styles for rename page */
.filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}
.filter-row label {
/*             flex: 1; */
	margin-bottom: 5px;
	font-size: 14px;
}
.filter-row select, .filter-row input[type="date"], .filter-row input[type="text"], .filter-row input[type="number"] {
	flex: 7;
	padding: 2px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 20%;
}
.filter-row button {
	flex: 2;
	background-color: #777;
	margin-bottom: 10px;
	color: #fff;
	border-radius: 5px;
	border: none;
	cursor: pointer;
}
.filter-row button:hover {
	background-color: #555;
}

/* Add styles for the table */
.image-table {
	width: 100%;
	border-collapse: collapse;
}
/* Style for table rows */
.image-table tr {
	border-bottom: 1px solid #ccc;
}
/* Style for table cells */
.image-table td {
	padding: 10px;
	text-align: center;
}
/* Style for images inside table cells */
.image-table img {
	width: 50px; /* Set initial width */
	transition: width 0.3s; /* Smooth transition on width change */
}
/* Enlarge image on hover */
.image-table img:hover {
	width: 200px; /* Enlarge to 200px on hover */
	cursor: pointer;
}
/* styles for rename page */

