:root {
	--primary-green: #00867F;
	--light-green: #00867F;
	--dark-green: #00867F;
	--bg-light: #f5f7fa;
	--text-dark: #2c3e50;
	--text-light: #6c757d;
	--border-color: #e0e6ed;
	--card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	--hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: var(--bg-light);
	min-height: 100vh;
	overflow-x: hidden;
}

/* CSS-only Sidebar Toggle */
#sidebar-toggle {
	display: none;
}

.sidebar-toggle-btn {
	position: fixed;
	top: 6px;
	left: 20px;
	z-index: 1002;
	width: 40px;
	height: 40px;
	background: var(--primary-green);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
	background: var(--light-green);
	transform: scale(1.05);
}

.sidebar-toggle-btn i {
	color: white;
	font-size: 18px;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Sidebar */
.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 260px;
	background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow-y: auto;

	/* Firefox Scrollbar */
	scrollbar-width: thin;
	scrollbar-color: #007872 transparent;
}


.sidebar::-webkit-scrollbar {
	width: 4px;
}

.sidebar::-webkit-scrollbar-track {
	background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
	background-color: #007872;
	border-radius: 6px;
}


.sidebar-header {
	padding: 25px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-name {
	color: white;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 15px;
}

.company-logo {
	color: white;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-img {
	max-width: 136px;
	max-height: 136px;
	border-radius: 8px;
	object-fit: contain;
	/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
	transition: transform 0.3s ease;
}

.logo-img:hover {
	transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.logo-img {
		max-width: 150px;
		max-height: 120px;
	}
}

@media (max-width: 480px) {
	.logo-img {
		max-width: 120px;
		max-height: 120px;
	}
}

/* Welcome Dropdown */
.welcome-dropdown {
	position: relative;
}


.welcome-box {
	background: rgba(255, 255, 255, 0.1);
	padding: 12px 15px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.welcome-box:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateX(3px);
}

.welcome-icon {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	flex-shrink: 0;
}

.welcome-icon i {
	color: white;
	font-size: 16px;
}

.welcome-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	flex-grow: 1;
}

.welcome-arrow {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	transition: transform 0.3s ease;
}

#welcome-submenu-toggle {
	display: none;
}

#welcome-submenu-toggle:checked~.welcome-submenu {
	max-height: 120px;
	opacity: 1;
}

#welcome-submenu-toggle:checked~.welcome-box .welcome-arrow {
	transform: rotate(180deg);
}

.welcome-submenu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	margin-top: 8px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 6px;
}

.welcome-submenu-item {
	display: flex;
	align-items: center;
	padding: 10px 15px 10px 20px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.2s ease;
}

.welcome-submenu-item:hover {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	padding-left: 25px;
}

.welcome-submenu-item i {
	margin-right: 10px;
	font-size: 14px;
}

.nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-item {
	display: block;
	padding: 14px 20px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.2s ease;
	position: relative;
}

.nav-item:hover {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	padding-left: 25px;
}

.nav-item.active {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border-left: 3px solid #C6D936;
}

.nav-item i {
	margin-right: 12px;
	font-size: 18px;
	width: 20px;
	display: inline-block;
}

/* Submenu Styles */
.submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(0, 0, 0, 0.1);
}

.submenu-item {
	display: block;
	padding: 10px 20px 10px 52px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;
	position: relative;
}

.submenu-item::before {
	content: '';
	position: absolute;
	left: 32px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
}

.submenu-item:hover {
	background: rgba(255, 255, 255, 0.05);
	color: white;
	padding-left: 57px;
}

.submenu-item.active {
	/* background: rgba(255, 255, 255, 0.1); */
	background: #1a928c;
	color: white;
}

/* Dropdown Arrow */
.nav-dropdown {
	position: relative;
}

.nav-dropdown .nav-item::after {
	content: '\f282';
	font-family: 'bootstrap-icons';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	transition: transform 0.3s ease;
}

#submenu-toggle {
	display: none;
}

#submenu-toggle:checked~.submenu {
	max-height: 200px;
}

#submenu-toggle:checked~.nav-item::after {
	transform: translateY(-50%) rotate(90deg);
}

/* Employee Submenu Styles */
#employee-submenu-toggle {
	display: none;
}

#employee-submenu-toggle:checked~.submenu {
	max-height: 200px;
}

#employee-submenu-toggle:checked~.nav-item::after {
	transform: translateY(-50%) rotate(90deg);
}



/* Credit Enquiry Submenu Styles */
#ce-submenu-toggle {
	display: none;
}

#ce-submenu-toggle:checked~.submenu {
	max-height: 200px;
}

#ce-submenu-toggle:checked~.nav-item::after {
	transform: translateY(-50%) rotate(90deg);
}

/* Cibil Submenu Styles */
#cibil-submenu-toggle {
	display: none;
}

#cibil-submenu-toggle:checked~.submenu {
	max-height: 220px;
	overflow-y: scroll;

	scrollbar-width: thin;
	/* Firefox */
	scrollbar-color: #269892 transparent;
}

/* Chrome, Safari */
#cibil-submenu-toggle:checked~.submenu::-webkit-scrollbar {
	width: 6px;
}

#cibil-submenu-toggle:checked~.submenu::-webkit-scrollbar-track {
	background: transparent;
}

#cibil-submenu-toggle:checked~.submenu::-webkit-scrollbar-thumb {
	background-color: #007872;
	border-radius: 6px;
}

#cibil-submenu-toggle:checked~.nav-item::after {
	transform: translateY(-50%) rotate(90deg);
}

/* Main Content */
.main-content {
	padding: 20px;
	min-height: 100vh;
	transition: all 0.3s ease;
	padding-bottom: 40px;
}

.page-header {
	background: white;
	padding: 20px 25px;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	margin-bottom: 25px;
}

.page-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.breadcrumb {
	background: transparent;
	padding: 8px 0 0 0;
	margin: 0;
	font-size: 13px;
}

.breadcrumb-item {
	color: var(--text-light);
}

.breadcrumb-item.active {
	color: var(--primary-green);
}

/* Stats Cards */
.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 25px;
}

.stat-card {
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--primary-green);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.stat-card:hover::before {
	transform: scaleY(1);
}

.stat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--hover-shadow);
}

.stat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.stat-icon {
	width: 45px;
	height: 45px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.icon-blue {
	background: #e3f2fd;
	color: #1976d2;
}

.icon-purple {
	background: #f3e5f5;
	color: #7b1fa2;
}

.icon-green {
	background: #e8f5e9;
	color: #388e3c;
}

.icon-orange {
	background: #fff3e0;
	color: #f57c00;
}

.icon-red {
	background: #ffebee;
	color: #d32f2f;
}

.stat-badge {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.badge-success {
	background: #e8f5e9;
	color: #2e7d32;
}

.badge-danger {
	background: #ffebee;
	color: #c62828;
}

.stat-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 13px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Enhanced Quick Actions Section */
.actions-section {
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: var(--card-shadow);
	position: relative;
	top: 319px;
}

.actions-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-green), var(--light-green));
	border-radius: 0 0 10px 10px;
}

.actions-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.actions-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.actions-title i {
	color: var(--primary-green);
	font-size: 20px;
}

.actions-subtitle {
	font-size: 13px;
	color: var(--text-light);
	margin: 0;
}

.action-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.action-category {
	background: var(--bg-light);
	border-radius: 8px;
	padding: 15px;
	transition: all 0.3s ease;
}

.action-category:hover {
	background: #e8f5e9;
	transform: translateY(-2px);
}

.category-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.category-title i {
	color: var(--primary-green);
	font-size: 16px;
}

.action-buttons {
	display: flex;
	/* flex-direction: column; */
	gap: 8px;
}

.action-btn {
	padding: 10px 15px;
	border: 1px solid var(--border-color);
	background: white;
	border-radius: 6px;
	font-size: 14px;
	color: var(--text-dark);
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-align: left;
}

.action-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
	transform: translateX(5px);
	box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

.action-btn i {
	font-size: 16px;
	width: 20px;
	text-align: center;
}

.action-btn-primary {
	background: linear-gradient(135deg, var(--primary-green), var(--light-green));
	color: white;
	border: none;
	font-weight: 500;
}

.action-btn-primary:hover {
	background: linear-gradient(135deg, var(--light-green), var(--primary-green));
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.quick-actions-footer {

	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-text {
	font-size: 13px;
	color: var(--text-light);
}

.footer-actions {
	display: flex;
	gap: 10px;
}

.footer-btn {
	padding: 8px 16px;
	background: transparent;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 13px;
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.footer-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

/* Desktop view (768px and up) */
@media (min-width: 768px) {
	.sidebar {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 260px;
	}

	.sidebar-toggle-btn {
		left: 270px;
	}

	#sidebar-toggle:checked~.sidebar {
		transform: translateX(-100%);
	}

	#sidebar-toggle:checked~.main-content {
		margin-left: 0;
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn {
		left: 20px;
	}

	.action-categories {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Mobile view (767px and below) */
@media (max-width: 767px) {
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.main-content {
		margin-left: 0;
		padding: 70px 15px 40px;
	}

	.sidebar-toggle-btn {
		left: 20px;
	}

	#sidebar-toggle:checked~.sidebar-overlay {
		display: block;
		opacity: 1;
	}

	#sidebar-toggle:checked~.sidebar {
		transform: translateX(0);
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn {
		left: 270px;
		background: var(--dark-green);
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn i {
		transform: rotate(90deg);
	}

	.stats-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.page-title {
		font-size: 20px;
	}

	.page-header {
		padding: 15px 20px;
		margin-bottom: 20px;
	}

	.stat-card {
		padding: 15px;
	}

	.stat-value {
		font-size: 24px;
	}

	.actions-section {
		padding: 20px;
		margin-bottom: 20px;
		position: relative;
		top: 58px;
	}


	.action-categories {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.actions-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.quick-actions-footer {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.footer-actions {
		width: 100%;
		flex-direction: column;
	}

	.footer-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Extra small devices (480px and below) */
@media (max-width: 480px) {
	.main-content {
		padding: 70px 10px 30px;
	}

	.sidebar {
		width: 280px;
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn {
		left: 290px;
	}

	.company-name {
		font-size: 14px;
	}

	.welcome-text {
		font-size: 13px;
	}

	.nav-item {
		padding: 12px 20px;
		font-size: 14px;
	}

	.submenu-item {
		padding: 8px 20px 8px 52px;
		font-size: 13px;
	}

	.welcome-submenu-item {
		padding: 8px 15px 8px 20px;
		font-size: 12px;
	}

	.actions-section {
		padding: 15px;
	}

	.action-btn {
		padding: 12px 15px;
	}
}

/* Subtle animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.stat-card {
	animation: fadeIn 0.5s ease-out backwards;
}

.stat-card:nth-child(1) {
	animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
	animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
	animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
	animation-delay: 0.4s;
}

.stat-card:nth-child(5) {
	animation-delay: 0.5s;
}

.action-category {
	animation: fadeIn 0.6s ease-out backwards;
}

.action-category:nth-child(1) {
	animation-delay: 0.6s;
}

.action-category:nth-child(2) {
	animation-delay: 0.7s;
}

.action-category:nth-child(3) {
	animation-delay: 0.8s;
}


/* FAQ Section */
.faq-section {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	margin-bottom: 30px;
	overflow: hidden;
}

.faq-header {
	padding: 20px 25px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.faq-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq-title i {
	color: var(--primary-green);
}

.add-faq-btn {
	background: linear-gradient(135deg, var(--primary-green), var(--light-green));
	color: white;
	border: none;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
	text-decoration: none;
}

.add-faq-btn:hover {
	background: linear-gradient(135deg, var(--light-green), var(--primary-green));
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.faq-controls {
	padding: 20px 25px;
	background: #f8f9fa;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.search-box {
	position: relative;
	flex-grow: 1;
	min-width: 250px;
}

.search-box input {
	width: 100%;
	padding: 10px 15px 10px 40px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.search-box input:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.search-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
}

.filter-controls {
	display: flex;
	gap: 10px;
	align-items: center;
}

.filter-dropdown {
	padding: 10px 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	background: white;
	cursor: pointer;
	transition: all 0.2s ease;
}

.filter-dropdown:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.filter-btn {
	padding: 10px 15px;
	border: 1px solid var(--border-color);
	background: white;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.filter-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.filter-btn i {
	font-size: 16px;
}

.faq-table-container {
	overflow-x: auto;
}

.faq-table {
	width: 100%;
	border-collapse: collapse;
}

.faq-table th {
	background: #f8f9fa;
	padding: 15px;
	text-align: left;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
	border-bottom: 1px solid var(--border-color);
}

.faq-table td {
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-dark);
}

.faq-table tr:hover {
	background: #f8f9fa;
}

.faq-id {
	font-weight: 600;
	color: var(--text-light);
}

.faq-question {
	font-weight: 500;
}

.faq-answer {
	color: var(--text-light);
	max-width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.status-badge {
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
}

.status-active {
	background: #e8f5e9;
	color: #2e7d32;
}

.status-inactive {
	background: #ffebee;
	color: #c62828;
}

.status-draft {
	background: #fff8e1;
	color: #f57f17;
}

.action-buttons-cell {
	display: flex;
	gap: 8px;
}

.action-icon {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.action-icon.edit {
	background: #e3f2fd;
	color: #1976d2;
}

.action-icon.edit:hover {
	background: #1976d2;
	color: white;
}

.action-icon.toggle {
	background: #e8f5e9;
	color: #388e3c;
}

.action-icon.toggle:hover {
	background: #388e3c;
	color: white;
}

.action-icon.delete {
	background: #ffebee;
	color: #d32f2f;
}

.action-icon.delete:hover {
	background: #d32f2f;
	color: white;
}

.faq-pagination {
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-controls {
	display: flex;
	gap: 5px;
}

.page-btn {
	width: 32px;
	height: 32px;
	border: 1px solid var(--border-color);
	background: white;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
}

.page-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn.active {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.page-btn:disabled:hover {
	background: white;
	color: var(--text-light);
	border-color: var(--border-color);
}

/* Desktop view (768px and up) */
@media (min-width: 768px) {
	.sidebar {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 260px;
	}

	.sidebar-toggle-btn {
		left: 270px;
	}

	#sidebar-toggle:checked~.sidebar {
		transform: translateX(-100%);
	}

	#sidebar-toggle:checked~.main-content {
		margin-left: 0;
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn {
		left: 20px;
	}

	.action-categories {
		grid-template-columns: repeat(3, 1fr);
	}

	.faq-controls {
		flex-wrap: nowrap;
	}
}

/* Mobile view (767px and below) */
@media (max-width: 767px) {
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.main-content {
		margin-left: 0;
		padding: 70px 15px 40px;
	}

	.sidebar-toggle-btn {
		left: 20px;
	}

	#sidebar-toggle:checked~.sidebar-overlay {
		display: block;
		opacity: 1;
	}

	#sidebar-toggle:checked~.sidebar {
		transform: translateX(0);
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn {
		left: 270px;
		background: var(--dark-green);
	}

	#sidebar-toggle:checked~.sidebar-toggle-btn i {
		transform: rotate(90deg);
	}

	.stats-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.page-title {
		font-size: 20px;
	}

	.page-header {
		padding: 15px 20px;
		margin-bottom: 20px;
	}

	.stat-card {
		padding: 15px;
	}

	.stat-value {
		font-size: 24px;
	}

	.actions-section {
		padding: 20px;
		margin-bottom: 20px;
	}

	.action-categories {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.actions-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.quick-actions-footer {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.footer-actions {
		width: 100%;
		flex-direction: column;
	}

	.footer-btn {
		width: 100%;
		justify-content: center;
	}

	.faq-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.faq-controls {
		flex-direction: column;
	}

	.search-box {
		width: 100%;
	}

	.filter-controls {
		width: 100%;
		justify-content: space-between;
	}

	.faq-table {
		font-size: 13px;
	}

	.faq-table th,
	.faq-table td {
		padding: 10px;
	}

	.faq-answer {
		max-width: 150px;
	}

	.action-buttons-cell {
		flex-direction: column;
		gap: 5px;
	}

	.faq-pagination {
		flex-direction: column;
		align-items: center;
	}
}

/* Settings Section */
.settings-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	max-width: 800px;
	margin: 0 auto;
}

.settings-card {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
	transition: all 0.3s ease;
}

.settings-card:hover {
	box-shadow: var(--hover-shadow);
}

.settings-header {
	padding: 20px 25px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
}

.settings-header i {
	color: var(--primary-green);
	font-size: 24px;
}

.settings-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.settings-body {
	padding: 25px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.form-control:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.form-control::placeholder {
	color: var(--text-light);
}

.btn-submit {
	background: linear-gradient(135deg, var(--primary-green), var(--light-green));
	color: white;
	border: none;
	border-radius: 6px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-submit:hover {
	background: linear-gradient(135deg, var(--light-green), var(--primary-green));
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-submit i {
	font-size: 16px;
}

.auth-info {
	background: #f8f9fa;
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.auth-info i {
	color: var(--blue);
	font-size: 20px;
}

.auth-text {
	font-size: 14px;
	color: var(--text-dark);
	flex-grow: 1;
}

.auth-email {
	font-weight: 500;
}

.btn-enable {
	background: var(--light-blue);
	color: var(--blue);
	border: none;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-enable:hover {
	background: var(--blue);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.btn-enable i {
	font-size: 14px;
}

.settings-footer {
	padding: 15px 25px;
	background: #f8f9fa;
	border-top: 1px solid var(--border-color);
	font-size: 13px;
	color: var(--text-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.settings-footer a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
}

.settings-footer a:hover {
	text-decoration: underline;
}


/* Create Employee Form */
.employee-form-container {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
}

.form-header {
	padding: 20px 25px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-header i {
	color: var(--primary-green);
	font-size: 24px;
}

.form-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.form-body {
	padding: 25px;
}

.form-section {
	margin-bottom: 30px;
}

.section-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 8px;
}

.section-title i {
	color: var(--primary-green);
	font-size: 18px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.required {
	color: #e74c3c;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.form-control:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.form-control::placeholder {
	color: var(--text-light);
}

.form-select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	background: white;
	transition: all 0.2s ease;
}

.form-select:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.file-upload {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border: 2px dashed var(--border-color);
	border-radius: 6px;
	background: #f8f9fa;
	cursor: pointer;
	transition: all 0.2s ease;
}

.file-upload:hover {
	border-color: var(--primary-green);
	background: rgba(46, 125, 50, 0.05);
}

.file-upload i {
	font-size: 32px;
	color: var(--text-light);
	margin-bottom: 10px;
}

.file-upload-text {
	font-size: 14px;
	color: var(--text-dark);
	margin-bottom: 5px;
}

.file-upload-hint {
	font-size: 12px;
	color: var(--text-light);
}

.file-upload input[type="file"] {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.form-actions {
	padding: 20px 25px;
	background: #f8f9fa;
	border-top: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.action-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.btn {
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-green), var(--light-green));
	color: white;
	border: none;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--light-green), var(--primary-green));
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
	background: white;
	color: var(--text-dark);
	border: 1px solid var(--border-color);
}

.btn-secondary:hover {
	background: #f8f9fa;
	border-color: var(--primary-green);
	color: var(--primary-green);
}

.form-info {
	font-size: 13px;
	color: var(--text-light);
}

.form-info a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
}

.form-info a:hover {
	text-decoration: underline;
}


@media (min-width: 768px) {


	.form-row {
		display: flex;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.form-group.col-md-6 {
		margin-bottom: 0;
	}
}


/* Employee Management Section */
.employee-management-container {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
}

.employee-filters {
	padding: 20px 25px;
	background: #f8f9fa;
	border-bottom: 1px solid var(--border-color);
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
	margin-bottom: 15px;
}

.filter-row .form-group {
	flex: 1;
	min-width: 200px;
	margin-bottom: 0;
}

.filter-actions {
	display: flex;
	gap: 10px;
}

.display-options {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.entries-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-dark);
}

.entries-info .form-select {
	width: auto;
	padding: 5px 10px;
}

.employee-table-container {
	overflow-x: auto;
}

.employee-table {
	width: 100%;
	border-collapse: collapse;
}

.employee-table th {
	background: #f8f9fa;
	padding: 15px;
	text-align: left;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
	border-bottom: 1px solid var(--border-color);
}

.employee-table td {
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-dark);
}

.employee-table tr:hover {
	background: #f8f9fa;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contact-info .email {
	color: var(--primary-green);
	font-weight: 500;
}

.contact-info .phone {
	color: var(--text-light);
}

.action-buttons {
	display: flex;
	gap: 8px;
}

.action-btn {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
}

.action-btn.edit {
	background: #e3f2fd;
	color: #1976d2;
}

.action-btn.edit:hover {
	background: #1976d2;
	color: white;
}

.action-btn.view {
	background: #e8f5e9;
	color: #388e3c;
}

.action-btn.view:hover {
	background: #388e3c;
	color: white;
}

.action-btn.delete {
	background: #ffebee;
	color: #d32f2f;
}

.action-btn.delete:hover {
	background: #d32f2f;
	color: white;
}

.table-footer {
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-controls {
	display: flex;
	gap: 5px;
}

.page-btn {
	width: 32px;
	height: 32px;
	border: 1px solid var(--border-color);
	background: white;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
}

.page-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn.active {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.page-btn:disabled:hover {
	background: white;
	color: var(--text-light);
	border-color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 767px) {
	.filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-row .form-group {
		min-width: 100%;
	}

	.filter-actions {
		width: 100%;
		justify-content: center;
	}

	.display-options {
		justify-content: center;
	}

	.table-footer {
		flex-direction: column;
		align-items: center;
	}

	.employee-table {
		font-size: 13px;
	}

	.employee-table th,
	.employee-table td {
		padding: 10px;
	}

	.action-buttons {
		flex-direction: column;
		gap: 5px;
	}
}

@media (max-width: 480px) {

	.employee-table th,
	.employee-table td {
		padding: 8px;
		font-size: 12px;
	}

	.contact-info .email {
		font-size: 11px;
	}

	.contact-info .phone {
		font-size: 11px;
	}
}


/* Get Data Section */
.get-data-container {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
}

.form-header {
	padding: 20px 25px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(56, 142, 60, 0.05));
}

.form-header i {
	color: var(--primary-green);
	font-size: 24px;
}

.form-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.form-body {
	padding: 25px;
}

.form-section {
	margin-bottom: 30px;
}

.section-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 8px;
}

.section-title i {
	color: var(--primary-green);
	font-size: 18px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.required {
	color: #e74c3c;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.form-control:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.form-control::placeholder {
	color: var(--text-light);
}

.form-actions {
	padding: 20px 25px;
	background: #f8f9fa;
	border-top: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.action-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.btn {
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-green), var(--light-green));
	color: white;
	border: none;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--light-green), var(--primary-green));
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
	background: white;
	color: var(--text-dark);
	border: 1px solid var(--border-color);
}

.btn-secondary:hover {
	background: #f8f9fa;
	border-color: var(--primary-green);
	color: var(--primary-green);
}

.form-info {
	font-size: 13px;
	color: var(--text-light);
}

.form-info a {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 500;
}

.form-info a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
	.form-row {
		display: flex;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.form-row .form-group.col-md-4 {
		grid-column: span 1;
	}

	.form-row .form-group.col-md-6 {
		grid-column: span 1;
	}
}

@media (min-width: 992px) {
	.form-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.form-row .form-group.col-md-4 {
		grid-column: span 1;
	}

	.form-row .form-group.col-md-6 {
		grid-column: span 2;
	}
}

@media (max-width: 767px) {
	.form-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.action-buttons {
		width: 100%;
	}

	.btn {
		flex: 1;
		justify-content: center;
	}
}


/* Credit Reports Section */
.credit-reports-container {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
}

.reports-filters {
	padding: 20px 25px;
	background: #f8f9fa;
	border-bottom: 1px solid var(--border-color);
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
}

.filter-row .form-group {
	flex: 1;
	min-width: 180px;
	margin-bottom: 0;
}

.filter-actions {
	display: flex;
	gap: 10px;
}

.reports-table-container {
	overflow-x: auto;
}

.reports-table {
	width: 100%;
	border-collapse: collapse;
}

.reports-table th {
	background: #f8f9fa;
	padding: 12px 15px;
	text-align: left;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
	border-bottom: 1px solid var(--border-color);
	white-space: nowrap;
}

.reports-table td {
	padding: 12px 15px;
	border-bottom: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-dark);
	white-space: nowrap;
}

.reports-table tr:hover {
	background: #f8f9fa;
}

.report-type {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
}

.report-type.experian {
	background: #e3f2fd;
	color: #1976d2;
}

.report-type.cibil {
	background: #e8f5e9;
	color: #388e3c;
}

.pdf-btn {
	background: #f3e5f5;
	color: #7b1fa2;
	border: none;
	border-radius: 4px;
	padding: 6px 10px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.pdf-btn:hover {
	background: #7b1fa2;
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 5px rgba(123, 31, 162, 0.3);
}

.table-footer {
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-controls {
	display: flex;
	gap: 5px;
}

.page-btn {
	width: 32px;
	height: 32px;
	border: 1px solid var(--border-color);
	background: white;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
}

.page-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn.active {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.page-btn:disabled:hover {
	background: white;
	color: var(--text-light);
	border-color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
	.filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-row .form-group {
		min-width: 100%;
	}

	.filter-actions {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {

	.reports-table th,
	.reports-table td {
		padding: 8px 10px;
		font-size: 13px;
	}

	.pdf-btn {
		padding: 4px 8px;
		font-size: 11px;
	}

	.table-footer {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.reports-table-container {
		font-size: 12px;
	}

	.reports-table th,
	.reports-table td {
		padding: 6px 8px;
		font-size: 12px;
	}

	.pdf-btn {
		padding: 3px 6px;
		font-size: 10px;
	}

	.pdf-btn i {
		font-size: 10px;
	}
}


/* All Transactions Section */
.transactions-container {
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
}

.transactions-filters {
	padding: 20px 25px;
	background: #f8f9fa;
	border-bottom: 1px solid var(--border-color);
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
	margin-bottom: 15px;
}

.filter-row .form-group {
	flex: 1;
	min-width: 200px;
	margin-bottom: 0;
}

.filter-actions {
	display: flex;
	gap: 10px;
}

.display-options {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.entries-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-dark);
}

.entries-info .form-select {
	width: auto;
	padding: 5px 10px;
}

.transactions-table-container {
	overflow-x: auto;
}

.transactions-table {
	width: 100%;
	border-collapse: collapse;
}

.transactions-table th {
	background: #f8f9fa;
	padding: 15px;
	text-align: left;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
	border-bottom: 1px solid var(--border-color);
}

.transactions-table td {
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--text-dark);
}

.transactions-table tr:hover {
	background: #f8f9fa;
}

.amount {
	font-weight: 600;
}

.amount.positive {
	color: #388e3c;
}

.amount.negative {
	color: #d32f2f;
}

.transaction-type {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
}

.transaction-type.credit {
	background: #e8f5e9;
	color: #388e3c;
}

.transaction-type.debit {
	background: #ffebee;
	color: #d32f2f;
}

.table-footer {
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.pagination-info {
	font-size: 14px;
	color: var(--text-light);
}

.pagination-controls {
	display: flex;
	gap: 5px;
}

.page-btn {
	width: 32px;
	height: 32px;
	border: 1px solid var(--border-color);
	background: white;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
}

.page-btn:hover {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn.active {
	background: var(--primary-green);
	color: white;
	border-color: var(--primary-green);
}

.page-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.page-btn:disabled:hover {
	background: white;
	color: var(--text-light);
	border-color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
	.filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-row .form-group {
		min-width: 100%;
	}

	.filter-actions {
		width: 100%;
		justify-content: center;
	}

	.display-options {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.transactions-table {
		font-size: 13px;
	}

	.transactions-table th,
	.transactions-table td {
		padding: 10px;
	}

	.table-footer {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {

	.transactions-table th,
	.transactions-table td {
		padding: 8px;
		font-size: 12px;
	}

	.transaction-type {
		font-size: 10px;
		padding: 2px 6px;
	}
}

/**** login css */


.ls-page-wrapper {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #e0e6ed 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

/* Main Container */
.ls-dual-container {
	background: white;
	border-radius: 24px;
	box-shadow: var(--hover-shadow);
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	min-height: 600px;
	display: flex;
	position: relative;
}

/* Left Column - Logo & Text Section */
.ls-visual-section {
	flex: 1;
	background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	text-align: center;
}

.ls-visual-bg-animation {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: lsFloatAnimation 8s ease-in-out infinite;
}

@keyframes lsFloatAnimation {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}

	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

.ls-logo-wrapper {
	position: relative;
	z-index: 2;
	margin-bottom: 40px;
}

.ls-company-logo {
	width: 120px;
	height: 120px;
	/* background: white; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

	transition: transform 0.6s ease;
}

.ls-company-logo:hover {
	transform: scale(1.05);
}

.ls-logo-icon {
	font-size: 60px;
	color: var(--primary-green);
}

.ls-brand-content {
	position: relative;
	z-index: 2;
	color: white;
	max-width: 400px;
}

.ls-brand-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2;
}

.ls-brand-description {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 30px;
}

.ls-feature-list {
	list-style: none;
	text-align: left;
}

.ls-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	font-size: 16px;
}

.ls-feature-icon {
	margin-right: 12px;
	font-size: 20px;
}

.ls-floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.ls-floating-shape {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	backdrop-filter: blur(10px);
}

.ls-floating-shape:nth-child(1) {
	width: 80px;
	height: 80px;
	top: 10%;
	left: 10%;
	animation: lsFloat1 6s ease-in-out infinite;
}

.ls-floating-shape:nth-child(2) {
	width: 60px;
	height: 60px;
	bottom: 20%;
	right: 15%;
	animation: lsFloat2 8s ease-in-out infinite;
}

.ls-floating-shape:nth-child(3) {
	width: 40px;
	height: 40px;
	top: 30%;
	right: 25%;
	animation: lsFloat3 10s ease-in-out infinite;
}

@keyframes lsFloat1 {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

@keyframes lsFloat2 {

	0%,
	100% {
		transform: translateX(0px) rotate(0deg);
	}

	50% {
		transform: translateX(20px) rotate(-180deg);
	}
}

@keyframes lsFloat3 {

	0%,
	100% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-15px) translateX(10px) rotate(90deg);
	}

	50% {
		transform: translateY(0px) translateX(20px) rotate(180deg);
	}

	75% {
		transform: translateY(15px) translateX(10px) rotate(270deg);
	}
}

/* Right Column - Login Form Section */
.ls-content-section {
	flex: 1;
	padding: 40px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: white;
}

.ls-form-header {
	margin-bottom: 20px;
}

.ls-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.ls-section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
	line-height: 1.2;
}

.ls-section-description {
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.6;
}

/* Form Styles */
.ls-login-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.ls-input-wrapper {
	position: relative;
}

.ls-input-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.ls-input-field {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	font-size: 16px;
	background: var(--bg-light);
	transition: all 0.3s ease;
	position: relative;
}

.ls-input-field:focus {
	outline: none;
	border-color: var(--primary-green);
	background: white;
	box-shadow: 0 0 0 4px rgba(0, 134, 127, 0.1);
}

.ls-input-field:focus+.ls-input-icon {
	color: var(--primary-green);
	/* transform: scale(1.1); */
}

.ls-input-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
	font-size: 20px;
	transition: all 0.3s ease;
	pointer-events: none;
}

.ls-input-field {
	padding-right: 50px;
}

.ls-password-toggle {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-light);
	cursor: pointer;
	font-size: 20px;
	transition: color 0.3s ease;
}

.ls-password-toggle:hover {
	color: var(--primary-green);
}

.ls-form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.ls-remember-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ls-checkbox-input {
	width: 18px;
	height: 18px;
	accent-color: var(--primary-green);
	cursor: pointer;
}

.ls-checkbox-label {
	font-size: 14px;
	color: var(--text-dark);
	cursor: pointer;
	user-select: none;
}

.ls-forgot-link {
	color: var(--primary-green);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ls-forgot-link:hover {
	color: var(--dark-green);
	text-decoration: underline;
}

/* Button Styles */
.ls-submit-button {
	background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
	color: white;
	border: none;
	border-radius: 12px;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ls-submit-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
}

.ls-submit-button:hover::before {
	left: 100%;
}

.ls-submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 134, 127, 0.3);
}

.ls-submit-button:active {
	transform: translateY(0);
}

.ls-form-footer {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: var(--text-light);
}

.ls-footer-link {
	color: var(--primary-green);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.ls-footer-link:hover {
	color: var(--dark-green);
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
	.ls-dual-container {
		flex-direction: column;
		max-width: 600px;
		min-height: auto;
	}

	.ls-visual-section {
		min-height: 400px;
		padding: 40px 20px;
	}

	.ls-content-section {
		padding: 40px 30px;
	}

	.ls-section-title {
		font-size: 28px;
	}
}

@media (max-width: 576px) {
	.ls-page-wrapper {
		padding: 20px 15px;
	}

	.ls-content-section {
		padding: 30px 20px;
	}

	.ls-section-title {
		font-size: 24px;
	}

	.ls-section-description {
		font-size: 14px;
	}

	.ls-input-field {
		padding: 14px 16px;
		font-size: 15px;
	}

	.ls-submit-button {
		padding: 14px 24px;
		font-size: 14px;
	}

	.ls-brand-title {
		font-size: 24px;
	}

	.ls-brand-description {
		font-size: 14px;
	}
}


/* EMI Calculator Section */
.emi-calculator-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	background: white;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
}

.emi-form-section {
	padding: 30px;
	border-right: 1px solid var(--border-color);
}

.emi-form-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 30px;
}

.emi-form-header i {
	color: var(--primary-green);
	font-size: 24px;
}

.emi-form-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.emi-form-body {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.emi-input-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.emi-input-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-dark);
}

.emi-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.emi-input-prefix,
.emi-input-suffix {
	position: absolute;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-light);
}

.emi-input-prefix {
	left: 15px;
}

.emi-input-suffix {
	right: 15px;
}

.emi-input-field {
	width: 100%;
	padding: 15px 15px 15px 35px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-dark);
	transition: all 0.3s ease;
}

.emi-input-field.has-suffix {
	padding: 15px 35px 15px 15px;
}

.emi-input-field:focus {
	outline: none;
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(0, 134, 127, 0.1);
}

.emi-slider {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: var(--border-color);
	outline: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.emi-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary-green);
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.emi-slider::-webkit-slider-thumb:hover {
	transform: scale(1.1);
}

.emi-slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary-green);
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.emi-slider::-moz-range-thumb:hover {
	transform: scale(1.1);
}

.emi-calculate-btn {
	background: linear-gradient(135deg, var(--primary-green), var(--light-green));
	color: white;
	border: none;
	border-radius: 8px;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.emi-calculate-btn:hover {
	background: linear-gradient(135deg, var(--light-green), var(--primary-green));
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 134, 127, 0.3);
}

.emi-calculate-btn i {
	font-size: 18px;
}

.emi-results-section {
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.emi-results-header {
	margin-bottom: 10px;
}

.emi-results-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.emi-results-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.emi-result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}

.emi-result-item:last-child {
	border-bottom: none;
}

.emi-result-label {
	font-size: 16px;
	color: var(--text-light);
}

.emi-result-value {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
}

.emi-chart-container {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.emi-chart-legend {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.legend-color {
	width: 16px;
	height: 16px;
	border-radius: 4px;
}

.principal-color {
	background-color: #1565C0;
}

.interest-color {
	background-color: #FF6B6B;
}

.legend-label {
	font-size: 14px;
	color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
	.emi-calculator-container {
		grid-template-columns: 1fr;
	}

	.emi-form-section {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
	}
}

@media (max-width: 576px) {

	.emi-form-section,
	.emi-results-section {
		padding: 20px;
	}

	.emi-input-field {
		padding: 12px 12px 12px 30px;
		font-size: 15px;
	}

	.emi-input-field.has-suffix {
		padding: 12px 30px 12px 12px;
	}

	.emi-calculate-btn {
		padding: 12px 20px;
		font-size: 15px;
	}

	.emi-result-value {
		font-size: 20px;
	}
}


/* Employee Information Styles */
.emp-info-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
	margin-top: 50px;
	transition: box-shadow 0.3s ease;
}

.emp-info-container:hover {
	box-shadow: var(--hover-shadow);
}

/* .emp-info-header {
            background-color: var(--primary-green);
            color: #fff;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: 500;
        } */

.emp-info-content {
	display: flex;
	flex-wrap: wrap;
}

.emp-info-left {
	flex: 1;
	min-width: 250px;
	background-color: rgba(0, 134, 127, 0.05);
	padding: 20px;
	border-right: 1px solid var(--border-color);
}

.emp-info-right {
	flex: 2;
	min-width: 300px;
	padding: 20px;
}

.emp-company-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.emp-company-logo i {
	font-size: 40px;
	color: var(--primary-green);
	margin-right: 15px;
}

.emp-company-name {
	font-size: 22px;
	font-weight: bold;
	color: var(--text-dark);
}

.emp-id-container {
	background-color: rgba(0, 134, 127, 0.1);
	padding: 10px 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	border-left: 4px solid var(--primary-green);
}

.emp-id-label {
	font-size: 12px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.emp-id-value {
	font-size: 18px;
	font-weight: bold;
	color: var(--text-dark);
}

.emp-info-section {
	margin-top: 20px;
}

.emp-info-section-title {
	font-size: 16px;
	font-weight: bold;
	color: var(--text-dark);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.emp-info-section-title i {
	margin-right: 8px;
	color: var(--primary-green);
}

.emp-info-item {
	margin-bottom: 8px;
	display: flex;
}

.emp-info-label {
	font-weight: 500;
	width: 100px;
	color: var(--text-light);
	font-size: 14px;
}

.emp-info-value {
	flex: 1;
	color: var(--text-dark);
	font-size: 14px;
}

.emp-info-divider {
	height: 1px;
	background-color: var(--border-color);
	margin: 15px 0;
}

.emp-timestamp {
	font-size: 12px;
	color: var(--text-light);
	margin-top: 5px;
}

.emp-form-title {
	font-size: 18px;
	font-weight: bold;
	color: var(--text-dark);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.emp-form-group {
	margin-bottom: 15px;
}

.emp-form-label {
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--text-dark);
	font-size: 14px;
}

.emp-form-control {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	transition: all 0.15s ease-in-out;
	background-color: #fff;
	font-size: 14px;
}

.emp-form-control:focus {
	border-color: var(--primary-green);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 134, 127, 0.25);
}

.emp-file-upload {
	position: relative;
	display: inline-block;
	cursor: pointer;
	width: 100%;
}

.emp-file-upload input[type=file] {
	position: absolute;
	left: -9999px;
}

.emp-file-upload-label {
	display: block;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: #fff;
	color: var(--text-dark);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.emp-file-upload-label:hover {
	border-color: var(--primary-green);
}

.emp-file-upload-label i {
	margin-right: 5px;
}

.emp-btn-container {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

.emp-btn {
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	border: none;
}

.emp-btn-primary {
	background-color: var(--primary-green);
	color: #fff;
}

.emp-btn-primary:hover {
	background-color: var(--dark-green);
	transform: translateY(-1px);
	box-shadow: var(--card-shadow);
}

.emp-btn-secondary {
	background-color: var(--text-light);
	color: #fff;
	margin-right: 10px;
}

.emp-btn-secondary:hover {
	background-color: #5a6268;
	transform: translateY(-1px);
	box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
	.emp-info-content {
		flex-direction: column;
	}

	.emp-info-left {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
	}
}

/* New FAQs Section Styles */
.newfaqs-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: var(--card-shadow);
	padding: 20px;
	margin-top: 20px;
	transition: box-shadow 0.3s ease;
}

.newfaqs-container:hover {
	box-shadow: var(--hover-shadow);
}

.newfaqs-header {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.newfaqs-title {
	color: var(--text-dark);
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.newfaqs-search {
	margin-bottom: 25px;
}

.newfaqs-search-input-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.newfaqs-search-input {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.15s ease-in-out;
}

.newfaqs-search-input:focus {
	border-color: var(--primary-green);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 134, 127, 0.25);
}

.newfaqs-search-buttons {
	display: flex;
	gap: 10px;
}

.newfaqs-btn-search,
.newfaqs-btn-reset {
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	border: none;
}

.newfaqs-btn-search {
	background-color: var(--primary-green);
	color: #fff;
}

.newfaqs-btn-search:hover {
	background-color: var(--dark-green);
	transform: translateY(-1px);
	box-shadow: var(--card-shadow);
}

.newfaqs-btn-reset {
	background-color: var(--text-light);
	color: #fff;
}

.newfaqs-btn-reset:hover {
	background-color: #5a6268;
	transform: translateY(-1px);
	box-shadow: var(--card-shadow);
}

.newfaqs-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.newfaqs-item {
	border: 1px solid var(--border-color);
	border-radius: 4px;
	overflow: hidden;
}

.newfaqs-question {
	display: flex;
	align-items: center;
	padding: 15px;
	background-color: #fff;
	cursor: pointer;
	transition: background-color 0.2s;
}

.newfaqs-question:hover {
	background-color: rgba(0, 134, 127, 0.05);
}

.newfaqs-question-icon {
	color: var(--primary-green);
	margin-right: 10px;
	font-size: 18px;
}

.newfaqs-question-text {
	flex: 1;
	font-weight: 500;
	color: var(--text-dark);
}

.newfaqs-question-toggle {
	color: var(--primary-green);
	transition: transform 0.3s;
}

.newfaqs-item.active .newfaqs-question-toggle {
	transform: rotate(180deg);
}

.newfaqs-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background-color: rgba(0, 134, 127, 0.02);
}

.newfaqs-item.active .newfaqs-answer {
	max-height: 200px;
	transition: max-height 0.5s ease-in;
}

.newfaqs-answer p {
	padding: 0 15px 15px 15px;
	margin: 0;
	color: var(--text-dark);
	font-size: 14px;
	line-height: 1.5;
}

/* ------------------------- */
.get-data-container.get-data {
	margin-top: 25px;
}

.get-data-container.get-data .reports-table-container table tr td:first-child {
	text-transform: capitalize;
	background: #f8f9fa;
	padding: 12px 15px;
	text-align: left;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 14px;
	border-bottom: 1px solid var(--border-color);
	white-space: nowrap;
}

.get-data-container.get-data .reports-table-container table tr td {
	white-space: normal;
}

.get-data-container.get-data .copy-icon {
	cursor: pointer;
	color: #00867f;
	padding: 0 2px;
	transition: all 0.1s ease-out;
}

.get-data-container.get-data .copy-icon:hover {
	transform: translateY(-2px);
}

.get-data-container.get-data .copy {
	display: flex;
	align-items: center;
}

.get-data-container.get-data .copy span.pr-6 {
	padding-right: 6px;
}

.get-data-container {
	margin-bottom: 25px;
}

.alert.alert-danger p {
	margin: 0;
}

tr.no-record-row>td {
	text-align: center;
	vertical-align: middle;
}

.credit-reports table tr>td.doc {
	text-transform: uppercase;
}

.credit-reports table tr>td.gender,
.credit-reports table tr>td.report_type {
	text-transform: capitalize;
}

.report-type.crif {
	background: #fff3e0;
	color: #f57c00;
}

.report-type.equifax {
	background: #f1e7f5;
	color: #a900f5;
}

.pdf-btn {
	text-decoration: none;
}

div#formError {
	display: flex;
	justify-content: center;
	margin: -10px;
    text-align: center;
}

div#formError span {
	color: red;
}

.pagination-controls span.dots {
	display: flex;
	align-items: flex-end;
}

.settings-card .btn-enable:hover {
	color: #333;
}

button.nav-item,
button.welcome-submenu-item {
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
}

aside.sidebar.loading {
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: linear-gradient(180deg, #004d49 0%, #004d49 100%); */
}

aside.sidebar.loading span {
	color: white;
	width: 50px;
	height: 50px;
}

div.form-error {
	font-size: 13px;
	margin: 1px 0 0 0;
}

div.form-error span {
	color: red;
	padding-left: 1px;
}

#-submenu-toggle {
	display: none;
}

/* Employee Submenu Styles */
#employee-submenu-toggle {
	display: none;
}

#employee-submenu-toggle:checked~.submenu {
	max-height: 220px;
	overflow-y: scroll;
	scrollbar-width: thin;
	/* Firefox */
	scrollbar-color: #269892 transparent;
}

/* Chrome, Safari */
#employee-submenu-toggle:checked~.submenu::-webkit-scrollbar {
	width: 6px;
}

#employee-submenu-toggle:checked~.submenu::-webkit-scrollbar-track {
	background: transparent;
}

#employee-submenu-toggle:checked~.submenu::-webkit-scrollbar-thumb {
	background-color: #007872;
	border-radius: 6px;
}

#employee-submenu-toggle:checked~.nav-item::after {
	transform: translateY(-50%) rotate(90deg);
}

.contact-info p {
	display: flex;
	flex-direction: row;
	align-items: baseline;
}

.contact-info p strong {
	margin-right: 10px;
}

.contact-info p a {
	text-decoration: none;
	color: var(--primary-green);
}

.contact-info p a:hover {
	text-decoration: underline;
}

.ls-login-form .send-otp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1px 0 10px 0;
}

.ls-login-form .send-otp span {
	color: var(--primary-green);
	font-size: 14px;
	font-weight: 500;
	padding-left: 1px;
	transition: color 0.3s ease;
	cursor: pointer;
}

.ls-login-form .send-otp span:hover {
	text-decoration: underline;
}

.ls-forgot-link.back {
	display: flex;
	flex-direction: row;
}

.ls-forgot-link.back i.bi-arrow-left {
	margin-right: 3px;
	margin-top: 1px;
}

/* Loader */
.container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 30%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

/* Loader spinner styling */
.loader::after {
	content: "";
	border: 5px solid #f3f3f3;
	border-top: 5px solid #00867f;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Skeleton loader - cards */
.dashboard-card-placeholder {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: -25px;
}

/* Styling for the loader cards */
.card-loader {
	background-color: #e0e0e0;
	border-radius: 8px;
	width: 100%;
	height: 167px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	animation: loading 1.5s infinite ease-in-out;
}

/* Skeleton animation effect */
@keyframes loading {
	0% {
		background-color: #e0e0e0;
	}

	50% {
		background-color: #f5f5f5;
	}

	100% {
		background-color: #e0e0e0;
	}
}

/* Optionally, you can add a shimmer effect */
.card-loader::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
	animation: shimmer 1.5s infinite;
}

/* Shimmer effect animation */
@keyframes shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.logo-img {
	height: auto;
}

.company-logo {
	margin-bottom: 20px;
}

.btn-enable {
	background: #f0f0f0;
}

.generate-report-head {
	width: 100%;
	padding: 20px 25px;
	background-color: #f8f9fa;
	border-bottom: 1px solid var(--border-color);
}

.generate-report-head .inline {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 15px;
}

.generate-report-head .inline .form-group {
	flex: 1 1 325px;
	padding: 0;
}

.generate-report-head div#reporttypeErr {
	position: absolute;
	margin: 2px 0 0 1px;
}

.generate-report-head .inline .actions {
	display: flex;
	align-items: center;
}

/* WhatsApp Button */
.get-data-container .action-buttons {
	align-items: center;
}

.get-data-container .action-buttons span {
	font-weight: 500;
	color: var(--text-light);
}

.btn-whatsapp {
	background: #25d366;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

.btn-whatsapp:hover {
	background: #25d366;
}

/* Recharge page */
.recharge-container {
	display: grid;
	grid-auto-flow: row;
	grid-auto-columns: max-content;
	grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
	justify-content: start;
	gap: 20px;
}

.plan-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	/* padding: 20px; */
	box-shadow: var(--card-shadow);
	height: 100%;
	min-height: 350px;
	cursor: pointer;
	position: relative;
	transition: 0.3s ease;
	width: 100%;
	max-width: 375px;
}

/* .plan-card:nth-child(1) {
    animation-delay: 0.1s;
} */
.plan-card:hover {
	transform: scale(1.03);
	box-shadow: var(--hover-shadow);
}

.plan-card .head {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	background: #f8f8f8;
}

.plan-card .head .amount-label {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 5px;
}

.plan-card .head p {
	margin: 0;
	font-size: 12px;
	margin-top: -12px;
	margin-bottom: -6px;
	color: var(--text-light);
}

.plan-card .body {
	flex: 1;
	padding: 20px 20px 15px 20px;
	min-height: 140px;
}

.plan-card .body .benefits {
	margin: 10px 0;
	font-size: 15px;
	line-height: 1.7;
}

.plan-card .body input {
	display: block;
	width: 100%;
}

.plan-card .action {
	padding: 15px 20px;
	border-top: 1px solid #eee;
	background: #fff;
}

.plan-card button.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 12px;
	gap: 8px;
}

.plan-card button.btn i {
	font-size: 16px;
}

.action-btn.status.unblock {
	color: #388e3c;
	background: #e8f5e9;
}

.action-btn.status.unblock:hover {
	color: white;
	background: #388e3c;
}

.faq-table button.action-icon {
	border: none;
}

span.spinner-border {
	color: white !important;
}

.api-price .form-header,
.add-faq .form-header {
	justify-content: space-between;
}

.api-price .form-header .left,
.add-faq .form-header .left {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

.emp-id-container.withImg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.emp-doc .emp-info-divider {
	background-color: transparent;
}

.employee-table.doc a {
	text-decoration: none;
}

.employee-table.doc a:hover {
	text-decoration: underline;
}

.employee-table.doc span.action.delete {
	cursor: pointer;
}

.add-faq .form-section {
	margin-bottom: 0;
}

.ck-editor__editable {
	min-height: 200px !important;
}

.add-faq .form-header a.btn {
	flex: none;
}

/* skeleton loader */
.recharge-card-placeholder {
	display: grid;
	grid-auto-flow: row;
	grid-auto-columns: max-content;
	grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
	justify-content: start;
	gap: 20px;
}

.plan-card-loader {
	background-color: #e0e0e0;
	border-radius: 8px;
	height: 385px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	animation: loadingp 1.5s infinite ease-in-out;
	width: 100%;
	max-width: 350px;
}

@keyframes loadingp {
	0% {
		background-color: #f1f1f1;
	}

	50% {
		background-color: #fefefe;
	}

	100% {
		background-color: #f1f1f1;
	}
}

.plan-card-loader::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
	animation: shimmerp 1.5s infinite;
}

@keyframes shimmerp {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

/* Start - Permissions modal */
#permissionsModal {
	max-width: 1200px;
	width: 95%;
}

.permission-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--border-color);
}

.role-name-display {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.role-name-display span {
	color: var(--primary-green);
}

.full-access-control {
	display: flex;
	align-items: center;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-weight: 500;
	color: var(--text-dark);
	user-select: none;
}

.full-access-checkbox {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.permissions-container {
	padding: 0 10px;
}

.permissions-container::-webkit-scrollbar {
	width: 6px;
}

.permissions-container::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.permissions-container::-webkit-scrollbar-thumb {
	background: var(--primary-green);
	border-radius: 6px;
}

.permission-group {
	margin-bottom: 20px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.permission-group:last-child {
	margin-bottom: 0px;
}

.permission-group-header {
	background: linear-gradient(135deg, rgba(0, 134, 127, 0.1), rgba(0, 134, 127, 0.05));
	padding: 12px 15px;
	font-weight: 600;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	transition: all 0.2s ease;
}

.permission-group-header:hover {
	background: linear-gradient(135deg, rgba(0, 134, 127, 0.15), rgba(0, 134, 127, 0.08));
}

.permission-group-header-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.permission-group-header-left i {
	color: var(--primary-green);
	font-size: 18px;
}

.permission-group-toggle {
	color: var(--primary-green);
	font-size: 16px;
	transition: transform 0.3s ease;
}

.permission-group-toggle.collapsed {
	transform: rotate(-90deg);
}

.permission-items {
	padding: 15px;
	background: white;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	max-height: 500px;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.permission-items.collapsed {
	max-height: 0;
	padding: 0 15px;
	overflow: hidden;
}

.permission-item {
	display: flex;
	align-items: flex-start;
	padding: 12px;
	border: 1px solid #f0f0f0;
	border-radius: 6px;
	background: #fafafa;
	transition: all 0.2s ease;
}

.permission-item:hover {
	background: #f0f9f8;
	border-color: var(--primary-green);
	box-shadow: 0 2px 4px rgba(0, 134, 127, 0.1);
}

.permission-checkbox {
	margin-top: 2px;
	flex-shrink: 0;
}

.permission-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.permission-details {
	flex: 1;
	margin-left: 10px;
	min-width: 0;
}

.permission-name {
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 4px;
	font-size: 14px;
	word-wrap: break-word;
}

.permission-description {
	font-size: 12px;
	color: var(--text-light);
	line-height: 1.4;
	word-wrap: break-word;
}

.no-permissions {
	text-align: center;
	padding: 40px 20px;
	color: var(--text-light);
}

/* Tablet view */
@media (max-width: 1024px) {
	#permissionsModal {
		max-width: 900px;
	}

	.permission-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/* Mobile view */
@media (max-width: 767px) {
	#permissionsModal {
		width: 98%;
		max-width: 100%;
	}

	.permission-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.permissions-container {
		max-height: 400px;
	}

	.permission-items {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 10px;
	}

	.permission-item {
		padding: 10px;
	}

	.permission-name {
		font-size: 13px;
	}

	.permission-description {
		font-size: 11px;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.permission-group-header {
		padding: 10px 12px;
		font-size: 14px;
	}

	.permission-group-header-left i {
		font-size: 16px;
	}
}

/* End - Permissions modal */
input[type="checkbox"]:checked {
	accent-color: #00867f;
}

input[type="checkbox" i] {
	accent-color: #00867f;
}

/* START - Recharge */
.range-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.range-input-group {
	display: flex;
	flex-direction: column;
}

.range-input-group label {
	font-size: 12px;
	color: var(--text-light);
	margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 767px) {
	.range-inputs {
		grid-template-columns: 1fr;
	}
}

/* END - Recharge */
.stats-container {
	display: grid;
	grid-auto-flow: row;
	grid-auto-columns: max-content;
	grid-template-columns: repeat(auto-fit, minmax(290px, max-content));
	justify-content: start;
	gap: 20px;
}

.stat-card {
	width: 100%;
	max-width: 350px;
}

.emp-info-header {
	background-color: var(--primary-green);
	color: #fff;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.emp-info-header .left {
	font-size: 18px;
	font-weight: 500;
}

.emp-info-header .view-back {
	background: white;
	color: #00867f;
}

/* Custom Searchable Dropdown Styles */
.custom-dropdown {
	position: relative;
	width: 100%;
}

.dropdown-selected {
	background: white;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	padding: 10px 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dropdown-selected.active {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
	outline: none;
}

.dropdown-arrow {
	transition: transform 0.2s ease;
}

.dropdown-arrow.rotated {
	transform: rotate(180deg);
}

.dropdown-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #ced4da;
	/* border-top: none; */
	border-radius: 0;
	max-height: 250px;
	overflow: hidden;
	z-index: 1000;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.dropdown-search {
	position: relative;
	padding: 0.5rem;
	border-bottom: 1px solid #e9ecef;
}

.dropdown-search input {
	width: 100%;
	padding: 0.375rem 2rem 0.375rem 0.75rem;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	outline: none;
}

.search-icon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #6c757d;
	pointer-events: none;
}

.options-list {
	max-height: 180px;
	overflow-y: auto;
}

.option-item {
	padding: 0.5rem 0.75rem;
	cursor: pointer;
	border-bottom: 1px solid #f8f9fa;
	transition: background-color 0.15s ease;
	word-wrap: break-word;
}

.option-item:hover {
	background-color: #00867f;
	color: white;
}

.option-item:last-child {
	border-bottom: none;
}

.no-results {
	padding: 0.5rem 0.75rem;
	text-align: center;
	color: #6c757d;
	font-style: italic;
}

/* Scrollbar styling for options list */
.options-list::-webkit-scrollbar {
	width: 6px;
}

.options-list::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.options-list::-webkit-scrollbar-thumb {
	background: var(--primary-green);
	border-radius: 6px;
}

.options-list::-webkit-scrollbar-thumb:hover {
	background: var(--dark-green);
}

/* Points Grid Styling */
.points-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-top: 0.5rem;
}

.points-input-group {
	display: flex;
	flex-direction: column;
}

.points-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--text-light);
	margin-bottom: 5px;
}

@media (max-width: 768px) {
	.points-grid {
		grid-template-columns: 1fr;
	}
}

/* Export button */
.display-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (max-width: 768px) {
	.display-options {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1rem;
	}

	.export-dropdown {
		order: 1;
		align-self: center;
	}

	.entries-info {
		order: 2;
		align-self: center;
	}
}

@media (max-width: 480px) {
	.display-options {
		gap: 0.75rem;
	}

	.export-dropdown-btn {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}

	.entries-info {
		font-size: 0.875rem;
	}

	.entries-info select {
		padding: 0.375rem 0.5rem;
	}
}

/* Export button dropdown */
.export-dropdown {
	position: relative;
}

.export-dropdown-btn:hover {
	background-color: #0b5ed7;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.export-dropdown-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.dropdown-arrow {
	transition: transform 0.2s ease;
}

.dropdown-arrow.rotated {
	transform: rotate(180deg);
}

.export-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 0.375rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	z-index: 1000;
	min-width: 125px;
	display: none;
	overflow: hidden;
}

.export-dropdown-menu.show {
	display: block;
}

.export-option {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #232323;
	transition: background-color 0.15s ease;
}

.export-option:hover {
	background-color: #00867f;
	color: #eee;
}

.export-option:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.export-option i {
	font-size: 1rem;
	width: 16px;
}

/* Points/Balance Badges for Recharge Plans */
.points-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
	min-height: 32px;
}

.points-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.prefill-badge {
	background: #e3f2fd;
	color: #1976d2;
}

.cibil-badge {
	background: #e8f5e9;
	color: #388e3c;
}

.equifax-badge {
	background: #f3e5f5;
	color: #7b1fa2;
}

.experian-badge {
	background: #fff3e0;
	color: #f57c00;
}

.cibil-commercial-badge {
	background: #e0f2f1;
	color: #00695c;
}

.crif-badge {
	background: #ffebee;
	color: #d32f2f;
}

.points-badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive design for badges */
@media (max-width: 480px) {
	.points-badges {
		gap: 6px;
		margin-bottom: 12px;
	}

	.points-badge {
		font-size: 11px;
		padding: 3px 8px;
	}
}

.plan-card .body .benefits {
	margin-top: 0;
}
/* Three dot loader */
.dot-loader {
	color: var(--text-dark);
	font-weight: bold;
	font-family: monospace;
	font-size: 14px;
	clip-path: inset(0 3ch 0 0);
	animation: l4 1s steps(4) infinite;
}
.dot-loader:before {
	content:"..."
}
@keyframes l4 {to{clip-path: inset(0 -1ch 0 0)}}
