body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.table-container {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #ccc;
	border-radius: 8px;
}
.table-container.awc {
	min-height: 300px;
}

.header-title {
	background-color: #000;
	color: white;
	padding: 12px;
	font-size: 18px;
	font-weight: bold;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th, td {
	padding: 12px;
	border: 1px solid #ccc;
	text-align: left;
}

th {
	background-color: #fbac1b;
	color: white;
}

td {
	color: black;
	background-color: #fff;
}

.header-wrapper {
	background-color: #fff;
	padding: 10px 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	margin-bottom: 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img.emblem {
	height: 80px;
	margin-right: 10px;
}

.logo-flex {
	display: flex;
	align-items: center;
}

.logo_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.logo_text strong {
	font-size: 16px;
	font-weight: normal;
	color: #000;
}

.logo_text .site_name_english {
	font-size: 1.6em;
	font-weight: bold;
	color: #000;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.header-right img.sw-logo {
	height: 80px;
}

a, a:focus, a:active {
	text-decoration: none;
	outline: none;
	box-shadow: none;
}

.menuToggle {
	display: none;
	margin-top: 10px;
	font-size: 14px;
	color: #333;
}

.navbar {
	display: flex;
	flex-wrap: wrap;
	background-color: #730068; /* Purple background */
	justify-content: center;
	padding: 10px 0;
	margin-bottom: 30px;
	min-height: 25px;
}
.back-link {
    color: white;
    font-weight: bold;
    margin: 0 20px;
    text-decoration: none;
    align-self: center;
}

.navbar.left-align {
    justify-content: flex-start;
}

.navbar.right-align {
    justify-content: flex-end;
}
.top-bar {
	background-color: #e2e1dc;
	padding: 10px 20px;
	font-family: Arial, sans-serif;
	/*font-size: 16px;
	color: #333;*/
}
.top-bar-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 20px; /* space between Hindi and English text */
}

.top-bar-list li {
	font-size: 11px;
	font-weight: bold;
	color: #333;
	line-height: 1.2;
}

.dropdown-row {
	display: flex;
	gap: 20px; /* space between dropdowns */
	align-items: center;
	margin-bottom: 20px;
}

.dropdown-row label {
	margin-right: 5px;
}

.dropdown-row select {
	padding: 5px;
	min-width: 150px;
}

label {
	display: block;
	margin-top: 10px;
}

select {
	width: auto;
	padding: 8px;
	margin-top: 5px;
}

.footer {
	background-color: #000;
	height: 25px;
	width: 100%;
}

#loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
}
.spinner {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	/*margin: 20px auto;*/
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media screen and (max-width: 600px) {
	th, td {
		padding: 8px;
		font-size: 14px;
	}
	.header-title {
		font-size: 16px;
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.row {
		flex-direction: column;
		align-items: flex-start;
	}
	.header-right {
		justify-content: flex-start;
		margin-top: 10px;
	}
	.menuToggle {
		display: block;
	}
}