* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	background-color: #f9f9f9;
	padding-top: 70px;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0px 15px;
}

.main-wrapper {
	padding: 50px 0;
}

/* Header Container */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header .logo a {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.header .logo img {
	height: 35px;
}

.header .logo a:hover {
	color: #0078ff;
}

/* Buttons */
.header .auth-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Login Button */
.btn-login {
	background-color: #0078ff;
	color: #fff;
}

.btn-login:hover {
	background-color: #005bb5;
	transform: translateY(-2px);
}

/* Logout Button */
.btn-logout {
	background-color: #f44336;
	color: #fff;
}

.btn-logout:hover {
	background-color: #c71c12;
	transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.header .logo a {
		font-size: 20px;
	}

	.header .btn {
		font-size: 14px;
		padding: 8px 16px;
	}
}

/* Outer Page Styles */
.login-page {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 170px);
	font-family: "Arial", sans-serif;
}

/* Login Container */
.login-page .login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

/* Login Box */
.login-page .login-box {
	background: #ffffff;
	max-width: 500px;
	width: 90%;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
}

/* Title */
.login-page .login-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
}

/* Form */
.login-page .login-form .form-group {
	margin-bottom: 20px;
	text-align: left;
}

.login-page .login-form label {
	font-size: 14px;
	color: #666;
	display: block;
	margin-bottom: 8px;
}

.login-page .form-input {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	outline: none;
	transition: all 0.3s ease;
}

.login-page .form-input:focus {
	border-color: #0078ff;
	box-shadow: 0 0 4px rgba(0, 120, 255, 0.3);
}

/* Button */
.login-page .btn {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	background-color: #0078ff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.login-page .btn:hover {
	background-color: #005bb5;
}

/* Footer Links */
.login-page .form-footer {
	margin-top: 15px;
}

.login-page .form-footer a {
	font-size: 14px;
	color: #0078ff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.login-page .form-footer a:hover {
	color: #005bb5;
}

/* Responsive Design */
@media screen and (max-width: 500px) {
	.login-page .login-box {
		padding: 20px;
	}

	.login-page .login-title {
		font-size: 24px;
	}

	.login-page .form-input,
	.login-page .btn {
		font-size: 14px;
		padding: 10px;
	}
}

/* Container Styles */
.table-switcher-container {
	margin: 20px 0;
	text-align: center;
}

.select-label {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 300px;
}

/* Base Styles for Select */
.custom-select {
	width: 100%;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	background-color: #f9f9f9;
	border: 2px solid #ddd;
	border-radius: 8px;
	appearance: none; /* Removes default arrow */
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: border-color 0.3s, box-shadow 0.3s;
}

/* Custom Arrow for Select */
.custom-select-wrapper::after {
	content: "\25BC"; /* Unicode for down arrow */
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 12px;
	color: #555;
	pointer-events: none; /* Prevent interaction with the arrow */
}

/* Hover and Focus States */
.custom-select:hover {
	border-color: #0078ff;
	box-shadow: 0 0 4px rgba(0, 120, 255, 0.5);
}

.custom-select:focus {
	outline: none;
	border-color: #0078ff;
	box-shadow: 0 0 6px rgba(0, 120, 255, 0.7);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
	.custom-select-wrapper {
		max-width: 100%;
	}

	.custom-select {
		font-size: 16px;
		padding: 14px 18px;
	}
}

/* Base Styles */
.feedback-table-container {
	width: 100%;
	overflow-x: auto; /* Ensures horizontal scrolling for small screens */
	margin: 20px 0;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table */
.feedback-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #333;
}

/* Header */
.feedback-table thead {
	background-color: #0078ff;
	color: #fff;
}

.feedback-table th {
	padding: 12px;
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid #ddd;
}

/* Body */
.feedback-table td {
	padding: 10px;
	border: 1px solid #ddd;
	vertical-align: top;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
	.feedback-table-container {
		border: none;
		box-shadow: none;
	}

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

	.feedback-table tr {
		display: block;
		margin-bottom: 15px;
		border-bottom: 1px solid #ddd;
	}

	.feedback-table td {
		display: block;
		text-align: right;
		position: relative;
		padding-left: 50%;
	}

	.feedback-table td::before {
		content: attr(data-label);
		position: absolute;
		left: 10px;
		font-weight: bold;
		text-transform: uppercase;
		text-align: left;
	}

	.feedback-table th {
		display: none;
	}
}

/* Loader styles */
.loader {
	display: none; /* Hidden by default */
	margin: 20px auto;
	border: 4px solid #f3f3f3; /* Light grey */
	border-top: 4px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Loader styles */
.loader-container {
	text-align: center;
	margin-bottom: 15px;
}
/* Loader styles */
.loader-container .loader {
	display: block;
}
/* Message container styles */
.message-container {
	margin-bottom: 15px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}
