	/*Font*/
	/* @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap'); */
	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

	body {
		color: #fff;
		background: #444546;
		/* font-family: "Raleway", sans-serif; */
		font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
		margin: 0;
		padding: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		background: #EEAECA;
		background: radial-gradient(circle, rgb(46 42 42) 0%, rgb(82 12 38) 100%);
		background-image: url("https://incinque.org/lead_creation/bgggg.png");
		background-size: cover;
		object-position: left !important;
	}

	/* th,
	td {
		font-size: 14px;
	} */

	h3 {
		margin-top: 0;
	}

	h2 {
		color: #ffcc70;
		text-align: center;
		font-size: 25px;

	}

	/*Error And Success*/
	.success,
	.error {
		background: rgba(255, 0, 0, 0.1);
		padding: 10px;
		margin-bottom: 15px;
		border-radius: 8px;
		text-align: center;
	}

	.error {
		color: #ff6f6f;
	}

	.success {
		background: #d4edda;
		color: #000;
	}

	/*Top Name*/
	.top-right-name {
		position: absolute;
		top: 20px;
		right: 30px;
		background: rgba(255, 255, 255, 0.1);
		padding: 10px 18px;
		border-radius: 10px;
		font-size: 15px;
		font-weight: 500;
		color: #ffcc70;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	}

	/*Logo*/
	.bg-img img {
		display: block;
		margin: auto;
		max-width: 170px;
		margin-bottom: 25px;
		filter: drop-shadow(2.5px 2.5px 8px #000);
	}

	/*Logout And Back*/
	.logout,
	.back {
		position: absolute;
		top: 20px;
		background: rgba(255, 255, 255, 0.1);
		padding: 10px 18px;
		border-radius: 10px;
		font-size: 15px;
		font-weight: 500;
		color: #ffcc70;
		text-decoration: none;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	}

	.logout {
		right: 30px;
	}

	.back {
		left: 30px;
	}

	.logout a,
	.back a {
		color: #ffcc70;
		text-decoration: none;
	}

	.logout:hover a,
	.back:hover a {
		color: #fff;
	}

	/*Login Box*/
	.login-box {
		color: #fff;
		background: rgb(71 80 90);
		padding: 35px 40px 85px 40px;
		border-radius: 15px;
		width: 100%;
		max-width: 400px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
		animation: fadeIn 0.6s ease;
	}

	.login-box h2 {
		margin-top: 0 !important;
	}

	/*Input Field*/
	input[type="text"],
	input[type="email"],
	input[type="password"],
	input[type="url"],
	input[type="date"],
	select,
	textarea {
		width: 100%;
		padding: 14px 15px;
		box-sizing: border-box;
		margin: 5px 0 20px;
		border: none;
		border-radius: 10px;
		background: #fff;
		color: #000;
		font-size: 15px;
	}


	select:focus,
	input:focus,
	textarea:focus {
		outline: none;
		color: black;
	}

	/*Time Slot*/
	#slotContainer {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
		margin-bottom: 15px;
		overflow-y: scroll;
		max-height: 250px;
		padding-right: 12px;
	}

	.slot-button,
	.slot-btn {
		padding: 10px 4px;
		border: 1px solid #ffcc70;
		background-color: #fff;
		color: #333;
		border-radius: 8px;
		cursor: pointer;
		font-size: 13px;
		font-weight: 600;
		text-align: center;
	}

	.slot-button:hover,
	.slot-button.active,
	.slot-btn:hover,
	.slot-btn.active {
		background-color: #ffcc70;
	}

	/*Button*/
	.custom-btn,
	.lead_custom-btn {
		width: 100%;
		color: #fff;
		border-radius: 5px;
		font-weight: 500;
		background: transparent;
		cursor: pointer;
		transition: all 0.3s ease;
		position: relative;
		display: inline-block;
		outline: none;
		padding: 0;
	}

	.btn-1 {
		width: 100%;
		border: none;
		box-shadow: none;
		line-height: 42px;
		-webkit-perspective: 230px;
		perspective: 230px;
	}

	.btn-1 span {
		width: 100%;
		background: linear-gradient(135deg, #ff9a00, #ff5f6d);
		display: block;
		position: absolute;
		border-radius: 3px 20px;
		margin: 0;
		padding: 3px 0;
		font-size: 16px;
		text-align: center;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-transition: all .3s;
		transition: all .3s;
	}

	.btn-1 span:nth-child(1) {
		-webkit-transform: rotateX(90deg);
		-moz-transform: rotateX(90deg);
		transform: rotateX(90deg);
		-webkit-transform-origin: 50% 50% -20px;
		-moz-transform-origin: 50% 50% -20px;
		transform-origin: 50% 50% -20px;
	}

	.btn-1 span:nth-child(2) {
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: 50% 40% -20px;
		-moz-transform-origin: 50% 40% -20px;
		transform-origin: 50% 40% -20px;
	}

	.btn-1:hover span:nth-child(1) {
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}

	.btn-1:hover span:nth-child(2) {
		color: transparent;
		-webkit-transform: rotateX(-90deg);
		-moz-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
	}

	.over_scroll_sec.no_margin {
		margin: 0;
	}

	.over_scroll_sec {
		margin-top: 70px;
		overflow: scroll;
		max-height: 380px;
		overflow-x: hidden;
	}

	/* Compact Layout for Lead Creation Page */
	.lead-form-box {
		color: #fff;
		background: rgba(255, 255, 255, 0.06);
		padding: 25px 35px 40px;
		border-radius: 15px;
		width: 100%;
		/*max-width: 420px;*/
		box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
		animation: fadeIn 0.6s ease;
		margin: 0 auto;
		box-sizing: border-box;
	}

	.lead-form-box h2 {
		margin: 0 0 18px;
		text-align: center;
		font-weight: 600;
	}

	/* Compact Input Fields */
	.lead-form-box input[type="text"],
	.lead-form-box input[type="tel"],
	.lead-form-box input[type="email"],
	.lead-form-box select,
	.lead-form-box textarea {
		width: 100%;
		padding: 10px 12px;
		box-sizing: border-box;
		margin-bottom: 12px;
		border: none;
		border-radius: 8px;
		background: #fff;
		color: #000;
		font-size: 15px;
	}

	.lead-form-box select:focus,
	.lead-form-box input:focus,
	.lead-form-box textarea:focus {
		outline: none;
		box-shadow: 0 0 3px #00b3b3;
	}

	/* Smaller textarea height */
	.lead-form-box textarea {
		resize: vertical;
		min-height: 60px;
		max-height: 120px;
	}

	/* Buttons */
	.lead-form-box .custom-btn.btn-1 {
		margin-bottom: 40px;
	}

	/* Compact field grouping (meeting type & purpose) */
	.field-row {
		display: flex;
		gap: 10px;
	}

	/* .field-row select {
		flex: 1;
	} */

	/* Inline buttons at bottom */
	.meeting-links {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15px;
		margin-top: 20px;
	}

	.meeting-links a {
		flex: 1;
		text-align: center;
		max-width: 200px;
		padding: 10px 0;
		font-size: 14px;
	}

	/* ==== Custom Modal (Unified Design for All Modals) ==== */
	.custom-modal-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.55);
		justify-content: center;
		align-items: center;
		z-index: 9999;
		transition: opacity 0.25s ease;
	}

	.custom-modal-overlay.active {
		display: flex;
	}

	.custom-modal {
		background: #fff;
		width: 90%;
		max-width: 500px;
		border-radius: 10px;
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
		overflow: hidden;
		animation: modalSlide 0.3s ease;
		font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
		color: #333;
	}

	@keyframes modalSlide {
		from {
			transform: translateY(-40px);
			opacity: 0;
		}

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

	/* ==== Header & Footer ==== */
	.custom-modal-header,
	.custom-modal-footer {
		padding: 12px 18px;
		background: #f8f8f8;
	}

	.custom-modal-header {
		background: linear-gradient(135deg, #ff9a00, #ff5f6d);
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 18px;
	}

	.custom-modal-header h3 {
		font-size: 18px;
		margin: 0;
		font-weight: 600;
		letter-spacing: 0.3px;
	}

	.close-modal {
		background: none;
		border: none;
		font-size: 22px;
		cursor: pointer;
		color: #fff;
		font-weight: bold;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.close-modal:hover {
		opacity: 0.85;
		transform: scale(1.1);
	}

	/* ==== Body ==== */
	.custom-modal-body {
		padding: 20px;
		color: #333;
	}

	.custom-modal-body h4 {
		margin-bottom: 10px;
		font-size: 16px;
		color: #222;
		font-weight: 600;
	}

	.custom-modal-body label {
		display: block;
		margin-bottom: 8px;
		font-weight: 500;
		cursor: pointer;
		color: #333;
	}

	/* Radio button spacing */
	.custom-modal-body input[type="radio"] {
		margin-right: 6px;
	}

	/* Textarea */
	.custom-modal-body textarea {
		width: 100%;
		height: 100px;
		resize: vertical;
		border: 1px solid #ccc;
		border-radius: 6px;
		padding: 8px;
		font-size: 14px;
		color: #333;
	}

	/* ==== Footer ==== */
	.custom-modal-footer {
		display: flex;
		justify-content: space-between;
		gap: 10px;
		border-top: 1px solid #ddd;
		background: #f8f8f8;
	}

	.custom-btn-primary,
	.custom-btn-secondary {
		padding: 8px 16px;
		border-radius: 6px;
		font-weight: bold;
		border: none;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.custom-btn-primary {
		background: linear-gradient(135deg, #ff9a00, #ff5f6d);
		color: #fff;
		border: none;
	}

	.custom-btn-primary:hover {
		filter: brightness(1.1);
	}

	.custom-btn-secondary {
		background-color: #6c757d;
		color: #fff;
	}

	.custom-btn-secondary:hover {
		background-color: #5a6268;
	}

	.custom-btn-secondary:disabled {
		opacity: 0.6;
		cursor: not-allowed;
	}

	/* ==== Step Navigation ==== */
	.step {
		display: none;
		animation: fadeStep 0.25s ease;
	}

	.step.active {
		display: block;
	}

	@keyframes fadeStep {
		from {
			opacity: 0;
			transform: translateY(10px);
		}

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

	/* Responsive */
	@media (max-width: 480px) {
		.custom-modal {
			width: 95%;
		}

		.custom-modal-body h4 {
			font-size: 15px;
		}
	}

	/* Scrollable comments body inside modal */
	#viewCommentsModal .custom-modal-body {
		max-height: 350px;
		/* adjust height as needed */
		overflow-y: auto;
		padding-right: 10px;
		/* avoid content hiding under scrollbar */
		scrollbar-width: thin;
		/* for Firefox */
		scrollbar-color: #ccc transparent;
	}

	/* Optional – nice custom scrollbar for WebKit browsers (Chrome, Edge) */
	#viewCommentsModal .custom-modal-body::-webkit-scrollbar {
		width: 6px;
	}

	#viewCommentsModal .custom-modal-body::-webkit-scrollbar-thumb {
		background-color: #bbb;
		border-radius: 4px;
	}

	#viewCommentsModal .custom-modal-body::-webkit-scrollbar-thumb:hover {
		background-color: #999;
	}





	.btn.approve-btn {
		background: #28a745;
		color: white;
		border-radius: 4px;
		padding: 6px 10px;
	}

	.btn.reject-btn {
		background: #dc3545;
		color: white;
		border-radius: 4px;
		padding: 6px 10px;
	}

	.btn.approve-btn:hover {
		background: #218838;
	}

	.btn.reject-btn:hover {
		background: #c82333;
	}

	div#meetings-container {
		overflow-y: hidden;
		overflow-x: scroll;
	}



	.top-left-name {
		position: absolute;
		top: 20px;
		left: 30px;
		background: rgba(255, 255, 255, 0.1);
		padding: 10px 18px;
		border-radius: 10px;
		font-size: 15px;
		font-weight: 500;
		color: #ffcc70;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	}

	form#filter-form {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 16px;
		margin-bottom: 20px 0px;
		padding: 5px;
		border-radius: 8px;
	}

	.slect_filter {
		display: flex;
		flex-direction: column;
	}

	.slect_filter label {
		font-size: 13px;
		font-weight: 500;
		margin-bottom: 6px;
	}


	.table-container {
		width: 100%;
		overflow-x: auto;
		border-radius: 8px;
		margin-top: 20px;
		max-height: 600px;
		overflow-y: auto;
	}

	.table-container::-webkit-scrollbar {
		width: 8px;
		height: 14px;
	}

	.table-container::-webkit-scrollbar-track {
		background: #f1f5f9;
		border-radius: 4px;
	}

	.table-container::-webkit-scrollbar-thumb {
		background: #cbd5e1;
		border-radius: 4px;
		cursor: pointer;
	}

	.table-container::-webkit-scrollbar-thumb:hover {
		background: #94a3b8;
		cursor: pointer;
	}

	table {
		width: 100%;
		border-collapse: separate;
		border-spacing: 0;
		font-size: 13px;
		background: white;
	}

	thead tr {
		position: sticky;
		top: 0;
		background: linear-gradient(135deg, #ff9a00, #ff5f6d);
		color: white;
		z-index: 10;
	}

	thead th {
		color: white;
		font-weight: 600;
		text-align: left;
		padding: 12px 16px;
		font-size: 13px;
		white-space: nowrap;
		border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	}

	tbody tr {
		border-bottom: 1px solid #e5e7eb;
		transition: background-color 0.15s ease;
	}

	tbody tr:hover {
		background: #f9fafb;
	}

	tbody td {
		padding: 12px 16px;
		color: #374151;
		vertical-align: middle;
	}

	input[type="checkbox"] {
		width: 18px;
		height: 18px;
		cursor: pointer;
		accent-color: #ff5f6d;
		color: white;
	}

	.status-select {
		appearance: none;
		background-color: #ff6b57;
		color: white;
		padding: 9px 16px 9px 7px;
		border-radius: 6px;
		border: none;
		cursor: pointer;
		font-size: 14px;
		font-weight: 500;
		transition: background-color 0.2s ease, box-shadow 0.2s ease;
		min-width: 130px;
		text-align: center;
		background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='16' viewBox='0 0 20 20' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548L10 12.032l4.484-4.484L16 8.548 10 14.548l-6-6z'/></svg>");
		background-repeat: no-repeat;
		background-position: right 10px center;
		background-size: 12px;
	}

	.status-select:hover:not(:disabled) {
		background-color: #e85a47;
		/* darker hover version */
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	}

	.status-select:focus {
		outline: none;
		box-shadow: 0 0 0 3px rgba(255, 107, 87, 0.4);
	}

	.status-select.disabled {
		background-color: #f3b1a9;
		/* lighter grayish coral for disabled */
		color: #555;
		cursor: not-allowed;
		background-image: none;
	}

	.status-select option {
		color: white;
	}


	.view-comment-btn,
	.view-mom-btn,
	.view-comments-btn,
	.view-history-btn {
		background-color: #007bff;
		color: #fff;
		border: none;
		padding: 5px 12px;
		border-radius: 20px;
		font-size: 13px;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.2s ease;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		display: inline-flex;
		align-items: center;
		gap: 4px;
	}

	/* ✅ Hover state for both */
	.view-comment-btn:hover,
	.view-mom-btn:hover,
	.view-comments-btn:hover,
	.view-history-btn:hover {
		background-color: #0056b3;
		transform: translateY(-1px);
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	}

	/* ✅ Active (pressed) state for both */
	.view-comment-btn:active,
	.view-mom-btn:active,
	.view-comments-btn:active,
	.view-history-btn:active {
		transform: translateY(0);
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	}

	input[type="tel"] {
		margin-top: 5px;
	}




	.action-btn {
		border: none;
		padding: 6px 14px;
		margin: 2px 4px;
		border-radius: 6px;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	/* ✅ Approve Button */
	.approve-btn {
		background-color: #28a745;
		color: white;
	}

	.approve-btn:hover {
		background-color: #218838;
	}

	/* ❌ Reject Button */
	.reject-btn {
		background-color: #dc3545;
		color: white;
	}

	.reject-btn:hover {
		background-color: #c82333;
	}

	/* 🔒 Disabled (Approved/Rejected state) */
	.approved,
	.rejected {
		background-color: #e9ecef;
		color: #6c757d;
		cursor: not-allowed;
		box-shadow: none;
	}

	/* Add subtle shadow for depth */
	.action-btn:not(_:disabled_) {
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	}

	.action-btn:not(_:disabled_)_:hover_ {
		transform: translateY(-1px);
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	}