/*================================================================================
	Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
.tdCenter {
text-align:center

}
.marg15 {
margin-top:15px;
}
.custom-modal-width_95 {
	max-width: 80%; /* Set the width to 80% of the screen */
}

@media (min-width: 768px) {
	.custom-modal-width_95 {
		max-width: 80%; /* Adjust for larger screens if needed */
	}
}

.cursorPointer {
cursor:pointer;

}
.tnaviclogo {
width:42%;
}
.tnaviclogoMain {
	width: 190px;
	position: relative;
	top: -8px;
	border-radius: 10px;
}


.tnavic-messenger-container {
		margin: 20px auto;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	height: 600px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tnavic-header {
	padding: 15px;
	background-color: #007bff;
	color: white;
	text-align: center;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.tnavic-title {
	margin: 0;
	font-size: 1.5rem;
}

.tnavic-chat-container {
	flex: 1;
	overflow-y: auto;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: #f9f9f9;
}

.tnavic-message {
	max-width: 70%;
	padding: 10px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	position: relative;
	word-wrap: break-word;
}

.tnavic-message-sender {
	align-self: flex-start;
	background-color: #e0f7fa;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 0;
	text-align: left;
}

.tnavic-message-receiver {
	align-self: flex-end;
	background-color: #d1e7dd;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 0;
	text-align: left;
}

.tnavic-message-text {
	margin: 0;
}

.tnavic-timestamp {
	font-size: 0.75rem;
	color: #777;
	margin-top: 5px;
	display: block;
	text-align: right;
}

.tnavic-input-container {
	display: flex;
	padding: 10px;
	border-top: 1px solid #ddd;
}

.tnavic-input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.tnavic-send-button {
	padding: 10px 15px;
	margin-left: 10px;
	border: none;
	background-color: #007bff;
	color: white;
	font-size: 1rem;
	border-radius: 5px;
	cursor: pointer;
}

	.tnavic-send-button:hover {
		background-color: #0056b3;
	}


.extended-color {
background-color:#fff;
}




/*Vijay */

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f5f7fa;
	color: #333;
}

.content-wrapper {
	padding: 20px;
}

.card {
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: none;
	margin-bottom: 30px;
}

.card-body {
	padding: 30px;
}

.wizard {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	position: relative;
}

	.wizard:before {
		content: '';
		position: absolute;
		top: 15px;
		left: 0;
		right: 0;
		height: 2px;
		background: #e0e0e0;
		z-index: 1;
	}

.step {
	text-align: center;
	width: 20%;
	position: relative;
	z-index: 2;
}

	.step span {
		display: flex;
		width: 32px;
		height: 32px;
		background: #e0e0e0;
		color: #666;
		border-radius: 50%;
		align-items: center;
		justify-content: center;
		margin: 0 auto 8px;
		font-weight: 600;
		transition: all 0.3s;
	}

	.step.active span {
		background: #4361ee;
		color: white;
		box-shadow: 0 4px 8px rgba(67, 97, 238, 0.3);
	}

	.step.completed span {
		background: #4cc9f0;
		color: white;
	}

	.step p {
		color: #666;
		font-size: 14px;
		margin-bottom: 0;
		transition: all 0.3s;
	}

	.step.active p,
	.step.completed p {
		color: #333;
		font-weight: 600;
	}

.form-container {
	background: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	display: none;
}

	.form-container.active {
		display: block;
		animation: fadeIn 0.5s ease;
	}

@@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-section {
	color: #4361ee;
	margin-bottom: 20px;
	font-weight: 600;
}

.form-group {
	margin-bottom: 20px;
}

label {
	font-weight: 500;
	color: #555;
	margin-bottom: 8px;
	display: block;
}

.required-field:after {
	content: " *";
	color: #f72585;
}

.form-control {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 10px 15px;
	height: auto;
	transition: all 0.3s;
}

	.form-control:focus {
		border-color: #4361ee;
		box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
	}

.error {
	border-color: #f72585 !important;
}

.error-message {
	color: #f72585;
	font-size: 13px;
	margin-top: 5px;
	display: none;
}

.nav-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.btn {
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s;
	border: none;
}

.btn-primary {
	background-color: #4361ee;
}

	.btn-primary:hover {
		background-color: #3a56d4;
		transform: translateY(-2px);
	}

.btn-secondary {
	background-color: #6c757d;
}

	.btn-secondary:hover {
		background-color: #5a6268;
	}

.btn-warning {
	background-color: #f8961e;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
}

.section-title {
	color: #4361ee;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}

.footer {
	text-align: center;
	margin-top: 30px;
	color: #666;
	font-size: 14px;
}

	.footer a {
		color: #4361ee;
		text-decoration: none;
	}

.fa-spinner {
	margin-right: 8px;
}

.custom-file-input ~ .custom-file-label::after {
	content: "Browse";
}

.custom-file-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Style for the textarea */
textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

/* Style for datetime input */
input[type="datetime-local"].form-control {
	padding: 10px 15px;
}