* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: #435165;
	margin: 0;
}

.login,
.register {
	width: 400px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 100px auto;
}

.login h1,
.register h1 {
	text-align: center;
	color: #5b6574;
	font-size: 24px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}

.login .links,
.register .links {
	display: flex;
	padding: 0 15px;
}

.login .links a,
.register .links a {
	color: #adb2ba;
	text-decoration: none;
	display: inline-flex;
	padding: 0 10px 10px 10px;
	font-weight: bold;
}

.login .links a:hover,
.register .links a:hover {
	color: #9da3ac;
}

.login .links a.active,
.register .links a.active {
	border-bottom: 3px solid #3274d6;
	color: #3274d6;
}

.login form,
.register form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
}

.login form label,
.register form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #3274d6;
	color: #ffffff;
}

.login form input[type="password"],
.login form input[type="text"],
.login form input[type="email"],
.register form input[type="password"],
.register form input[type="text"],
.register form input[type="email"] {
	width: 310px;
	height: 50px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}

.login form input[type="submit"],
.register form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #3274d6;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
}

.login form input[type="submit"]:hover,
.register form input[type="submit"]:hover {
	background-color: #2868c7;
	transition: background-color 0.2s;
}

.navtop {
	background-color: #2f3947;
	height: 70px;
	width: 100%;
	border: 0;
}

.navtop div {
	display: flex;
	margin: 0 auto;
	/*width: 1000px;*/
	padding: 1.5%;
	height: 100%;
}

.navtop div h1,
.navtop div a {
	display: inline-flex;
	align-items: center;
}

.navtop div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	/*color: #eaebed;*/
	color: white;
	/*font-weight: normal;*/
	font-weight: bold;
}

.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	/* color: #c1c4c8; */
	color: white;
	font-weight: bold;
}

.navtop div a i {
	padding: 2px 8px 0 0;
}

.navtop div a:hover {
	/* color: #eaebed; */
	color: #1abc9c;
}

body.loggedin {
	background-color: #f3f4f7;
}

.main-container {
	display: flex;
	/* Use flexbox for layout */
	min-height: 100vh;
	/* Make sidebar span full height of the viewport */
}

/* Sidebar styles */
.sidebar {
	width: 250px;
	/* Fixed width for the sidebar */
	/* background-color: #2c3e50; */
	background-color: #2f3947;
	color: white;
	/* Text color for sidebar */
	/*padding: 20px; */
	/* Inner padding */
	padding: 1.5%;
	box-sizing: border-box;
	/* Include padding in width calculation */
}

/* Styling links inside the sidebar */
.sidebar ul {
	list-style: none;
	/* Remove bullet points */
	padding: 0;
	/*margin: 0;*/
	margin-top: 20;
}

.sidebar ul li {
	/* margin-bottom: 15px; */
	margin-bottom: 18px;
}

.sidebar ul li a {
	color: white;
	text-decoration: none;
	/* Remove underline */
	/* font-size: 16px; */
	display: flex;
	/* Use flex to align icons with text */
	align-items: center;
	font-weight: bold;
}

.sidebar ul li a i {
	margin-right: 10px;
	/* Space between icon and text */
}

.sidebar ul li a.active {
	color: #1abc9c;
	/* Highlight color on active */
}

.sidebar ul li a:hover {
	color: #1abc9c;
	/* Highlight color on hover */
}

/* Content area styles */
.content {
	flex: 1;
	/* Take up remaining available space */
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	background-color: #f8f9fa;
	/* Light background for contrast */
	box-sizing: border-box;
	/* Include padding in width calculation */
}

.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
}

.content>p,
.content>div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}

#profile-table table td,
#profile-table table td {
	padding: 5px;
}

#profile-table table td:first-child,
#profile-table table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}

.content>div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

.submit-button {
	padding: 8px 20px;
	background-color: #2f3947;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}


/* ----------------------Home page style starts---------------------------- */

.analytics-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;



	margin: unset !important;
	padding: unset !important;
	background-color: unset !important;
	box-shadow: unset !important;
}

.analytics-container .analytics-card {
	width: 250px;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 0px 25px 0px 0px;
	padding: 10px;
	text-align: center;
}


/*----------------------Home page style ends---------------------------- */



/* ----------------Tour page style start--------------------  */
#tour-table table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
}

#tour-table table td,
th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
}

#tour-table table tr:nth-child(even) {
	background-color: #dddddd;
}

#delete-tour-btn {
	text-decoration: underline;
}

#delete-tour-btn:hover {
	cursor: pointer;
}

/* ----------------------Tour page style ends---------------------------- */


/* ----------------FAQ page style start--------------------  */
.faq-container {
	display: block;
	text-align: center;
	margin-top: 20px;
}

.faq-container .inputFields {
	display: flex;
	flex-direction: column;
}

.faq-container .inputFields .input-field {
	width: 60%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin: 10px auto;
}

.faq-container .inputFields .input-area {
	width: 60%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin: 10px auto;
}

.faq-container .add-button {
	padding: 8px 20px;
	background-color: green;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.faq-container .remove-button {
	padding: 8px 20px;
	background-color: red;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}


/* ----------------------FAQ page style ends---------------------------- */

/*-----------------------Users page style start---------------------*/

#users-table table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
}

#users-table table td,
th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
}

#users-table table tr:nth-child(even) {
	background-color: #dddddd;
}



/*-----------------------Users page style ends---------------------*/





/*-----------------------pagination/search style start---------------------*/

.end {
	display: flex;
	justify-content: flex-end;
}

.space-between {
	display: flex;
	justify-content: space-between;
}

.pagination {
	display: inline-block;
}

.pagination a {
	color: black;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	border: 1px solid #ddd;
}

.pagination a.active {
	background-color: #2f3947;
	color: white;
	border: 1px solid #2f3947;
}

.pagination a:hover:not(.active) {
	background-color: #ddd;
}

.pagination a:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.pagination a:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.search-container {
	position: relative;
	max-width: 300px;

}

.search-container input {
	width: 100%;
	padding: 10px 35px 10px 12px;
	border: 1px solid #ccc;
	border-radius: 25px;
}

.search-container .fas.fa-search {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #aaa;
	pointer-events: none;
}

/*-----------------------pagination/search style ends---------------------*/

.back-btn {
	padding: 10px;
	color: #FFF;
	background-color: #2f3947;
	font-size: 16px;
	text-align: center;
	font-style: normal;
	border-radius: 5px;
	/* width: 100%; */
	border: 1px solid #2f3947;
	/* margin-bottom: 10px; */
	cursor: pointer;
}

.form-box {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}

.form-box .form-box-container {
	max-width: 750px;
	margin: 0 auto;
}

.form-box .form-group {
	margin-bottom: 1rem;
}

.form-faq-box .inputFields {
	margin-bottom: 0;
}

.form-faq-box .inputFields input,
.form-faq-box .inputFields textarea {
	margin-bottom: 1rem !important;
}

.flex-fields {
	position: relative;
}

.flex-fields .action-buttons {
	position: absolute;
	right: -70px;
	bottom: 20px;
}

.flex-fields .action-buttons .add-button {
	background-color: #2868c7;
	border: 1px solid #2868c7;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
}

.flex-fields .action-buttons .remove-button {
	background-color: crimson;
	border: 1px solid crimson;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
}

.img-section {
	display: flex;
	align-items: center;
	gap: 4px;
}

.form-box .form-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 600;
}

.form-box .form-group input,
.form-box .form-group textarea,
.form-box .inputFields input,
.form-box .inputFields textarea {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	font-size: 16px;
	height: auto;
	margin: 0;
	outline: 0;
	padding: 15px;
	width: 100%;
	border-radius: 6px;
	background-color: #e8eeef;
	/* color: #8a97a0; */
	color: black;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
}

.form-box .form-group textarea {
	height: 150px;
}

.form-box .add-faq-btn {
	padding: 20px;
	color: #FFF;
	background-color: green;
	font-size: 18px;
	text-align: center;
	font-style: normal;
	border-radius: 5px;
	width: 100%;
	border: 1px solid green;
	margin-bottom: 10px;
	cursor: pointer;
}

.form-box .add-faq-btn:hover {
	background-color: #008000db;
}

.form-box .submit-btn {
	padding: 20px;
	color: #FFF;
	background-color: #2f3947;
	font-size: 18px;
	text-align: center;
	font-style: normal;
	border-radius: 5px;
	width: 100%;
	border: 1px solid #2f3947;
	margin-bottom: 10px;
	cursor: pointer;
}

.form-box .submit-btn:hover {
	background-color: #3e4b5c;
}

.form-box .image-box {
	width: 94px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #2f3947;
	padding: 5px;
	margin: 5px;
}

.form-box .image-box img {
	height: 100%;
	object-fit: contain;
}

.form-box .edit-image-box {
	display: flex;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
}

.form-box .edit-image-box .del-btn {
	background-color: white;
	position: absolute;
	bottom: 0;
	right: -5px;
	cursor: pointer;
	padding: 3px;
	border-radius: 4px;
}

.form-box .edit-image-box .audio-box {
	width: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #2f3947;
	padding: 5px;
	margin: 5px;
}

.form-box .edit-image-box p {
	margin: 0;
}

.form-box .images-flex {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
	flex-wrap: wrap;
}

.form-box .images-flex p {
	margin-bottom: 4px;
	display: block;
	width: 100%;
}

.bottom-message {
	text-align: center;
}

.form-box .form-group.inactive-tour {
	display: flex;
	align-items: center;
	gap: 8px;
}

.form-box .form-group.inactive-tour input {
	width: 16px;
	height: 16px;
}

.form-box .form-group.inactive-tour label {
	margin: 0;
}