* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

:root {
	/* Primary cyan/teal family (logo turquoise/cyan) */
	--main-color: #00a9bc; /* turquoise / primary */
	--main-color-tint: #5fd7dd; /* lighter tint for highlights */
	--main-color-tint-2: #e8f9fa; /* very pale surface */

	--main-shade-1: #007a86; /* deeper shade for emphasis */

	/* Warm gold / tan from the mark */
	--second-color: #bda66c; /* warm-gold / secondary */
	--second-color-tint: #e6ddab; /* lighter gold tint for badges */
	--second-color-tint-2: #fbf7ea; /* very pale warm background */

	/* Neutral grays for text, UI and muted elements */
	--gray-color: #55606a; /* neutral mid-gray */
	--gray-color-tint: #3e4a52; /* darker muted tone for icons/labels */
	--gray-color-tint-2: #9da7ae; /* lighter gray for borders */

	/* Text */
	--text-color: #0e2e30; /* near-black with a teal undertone (good on white) */
	--text-color-tint: #f6fbfb; /* light text tint for dark surfaces */

	/* Accent (leaf green from logo's leaf) */
	--accent-color: #61b65c; /* fresh leaf-green for small accents/positive states */

	/* Inputs & buttons */
	--input-bg-color: #f5fbfb; /* soft input background consistent with logo surfaces */

	--input-shadow-color: #e1f2f3; /* subtle input shadow */
	--input-shadow-color-focus: #bee7e8; /* focus ring/shadow color */
	--button-bg-color: #007a86; /* strong CTA color (deeper than --main-color) */

	--note-card-bg: #f2fbfa; /* pale card background */

	/* Typography & shape */
	--para-label-font-size: 0.85rem;
	--main-heading-font-size: 1rem;
	--main-heading-2-font-size: 1.25rem;
	--border-radius: 10px;
}

html {
	/* font-family: "Poppins", sans-serif !important; */
}

ul {
	list-style: none;
}

.container-base {
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	max-width: 1000px;
}

.main-content {
	flex-grow: 1;
}

.container-primary {
	background-color: #f8fafc !important;
}

/* font awesome icon background-color: inherit; */
i {
	background-color: transparent;
}

svg {
	background: transparent !important;
}

/* JQUERY VALIDATION ERROR MESSAGE STYLES OVERRIDE */
[id$="-error"],
.error.text-danger {
	color: red !important;
	font-weight: 500;
	position: absolute;
	bottom: -15.5px;
	left: 0;
	/* font-size: varHallticket(--para-label-font-size) !important; */
	font-size: 0.75rem;
	background-color: transparent;
	width: 100%;
	max-width: 20rem;
	text-transform: capitalize !important;
}

.input-error {
	border: 1px solid red !important;
}

/* FORM CONTAINER TOP BOX & BREADCRUMB */
.form-container-top-box {
	font-weight: bold;
	text-transform: uppercase;
	color: var(--text-color);

	margin: 0 0 0.8rem 0;
	padding: 0.8rem 1.6rem;

	background-color: #f6f6f6;
	box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.02);
}

.form-container-top-box li {
	font-size: 1.8rem !important;
	background-color: inherit;
}

.userProfile {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;

	background-color: inherit;
}

.userProfile p {
	margin: 0;
	font-size: inherit;

	background-color: inherit;
}

.userProfile i {
	display: inline-block;
	background-color: inherit;
	margin-right: 1.2rem !important;
	font-size: 1.8rem;
}

.userProfile #logout {
	font-size: inherit;
}

.postName {
	color: blue;
	margin-left: 1.2rem !important;
}

.input-element,
select {
	padding: 0.6rem;
	font-size: var(--para-label-font-size);
	background-color: var(--input-bg-color);
	border: 2px solid #dff2fe;
	transition: all 0.3s;
	border-radius: var(--border-radius);
	width: 100%;
	cursor: pointer;
}

.input-element:hover,
select:hover {
	box-shadow: 1px 1px 5px 2px var(--input-bg-color);
}

input {
	cursor: pointer;
}

input::placeholder {
	color: #aaa !important;
}

.input-sm {
	padding: 0.4rem;
	width: 100%;
}

.input-element:focus {
	box-shadow: 0px 0px 3px 0 var(--main-color-tint) !important;
	border: none;
	background-color: #ffffff;
}

input:focus {
	/* outline: none !important; */
}

.input-label {
	font-weight: 400;
	font-size: 0.8rem !important;
	cursor: pointer;
	margin-bottom: 0.35rem;
}

.input-label-title {
	color: #555;
	font-weight: 600;
	font-size: var(--main-heading-font-size) !important;

	margin-bottom: 0.3rem;
}

.button {
	border: none;
	font-weight: bold;
	font-size: 2rem;
	border-radius: 15px;
}

.button-lg {
	padding: 8px 16px;
}

.button-rounded {
	border-radius: 0.5rem;
}

.button-primary {
	background-color: var(--button-bg-color);
	color: #fff;
	border: 2px solid var(--button-bg-color);
	transition: all 0.3s;
}

.button-primary:hover {
	box-shadow: 1px 1px 3px 1px var(--button-bg-color);
}

.button-secondary {
	background-color: #fff;
	color: var(--second-color);
	border: 2px solid var(--button-bg-color);
	transition: all 0.3s;
}

.button-secondary:hover {
	box-shadow: 1px 1px 3px 2px var(--button-bg-color);
}

/* SWEET ALERT STYLING */
.swal2-title {
	font-size: 1.2rem !important;
}

.swal2-content {
	font-size: 0.9rem !important;
}

.swal2-cancel.swal2-styled,
.swal2-confirm.swal2-styled {
	font-size: 0.8rem !important;
}

/* DELETE CONFIRM MODAL */
.swal2-cancel,
.swal2-confirm {
	font-size: 1rem !important;
	padding: 0.4rem 0.8rem !important;
}

/* sweet alert check mark override */
.swal2-success-line-long,
.swal2-success-line-tip {
	z-index: 99999 !important;
}

.swal2-title,
.swal2-content {
	/* text-transform: capitalize !important; */
}

.swal2-popup,
.swal2-modal {
	/* width: 50rem !important; */
}

.header-container {
	display: flex;
	gap: 4px;
	height: 5rem;

	& .brand-img-container {
		width: 60%;
		overflow: hidden;
		border-radius: 3px;
	}

	& .header-marquee {
		border-radius: 3px;
		width: 40%;
		background-color: var(--main-color);
		color: #fff;
		font-weight: 600;
		padding: 0.4rem;

		display: flex;
		flex-direction: column;

		& p {
			margin: 0;
			padding: 0;
		}
	}
}

/* notes */
.note-card {
	font-size: var(--para-label-font-size);
	border-radius: var(--border-radius);

	background-color: var(--note-card-bg);
	box-shadow: 0px 0px 0px 0.3px var(--main-color);
	padding: 0.75rem;
	line-height: 1.3rem;
	color: #4d3800;

	font-weight: 600;
}

/* input card */
.input-card {
	box-shadow: 0px 0px 0px 0.3px var(--main-color);
	border-radius: var(--border-radius);
	background-color: #fff;

	& > div {
		padding: 1rem !important;
	}
}

.input-card-heading {
	border-radius: var(--border-radius);
	/* background-color: var(--main-color); */
	/* color: #fff; */
	padding: 0.8rem;
	box-shadow: 0 1px 1px 0.3px rgba(128, 128, 128, 0.216);
	border-bottom: 1px solid gray;
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	font-size: var(--main-heading-font-size) !important;

	& svg {
		background: transparent !important;
	}
}

/* table */
.c-table {
}

.c-button {
	outline: none;
	border: none;
	padding: 0.5rem 0.5rem;
	font-weight: 500 !important;
	font-size: var(--para-label-font-size) !important;
	border-radius: var(--border-radius);
	transition: all 200ms ease-out;
}

.c-button:hover,
.c-button:active {
	box-shadow: 0px 0px 0px 2px rgb(68, 68, 67);
}

.c-button:disabled {
	background-color: gray !important;
	box-shadow: none;
}

.c-btn-primary {
	color: #fff;
	background-color: var(--main-color);
	width: 100%;
	text-align: center;
	text-decoration: none;
}

.c-btn-success {
	color: #fff;
	width: 100%;
	text-align: center;
	background-color: #5b5c2b;
}

.c-btn-danger {
	color: #fff;
	width: 100%;
	text-align: center;
	background-color: #ff6467;
}

.c-btn-warning {
	color: #fff;
	width: 100%;
	text-align: center;
	background-color: #e17100;
}

/* helpline */
.helpline-container {
	border: 1px solid #5b5c2b;
	padding: 0.6rem;
	border-radius: var(--border-radius);
}

/* loader */

#loadMyPage {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
	z-index: 99999999999;
}

#loadMyPage {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #1e1f26bd;
}

#loadMyPage .loader {
	position: relative;
	width: 300px;
	min-height: 8px;
}

#loadMyPage .loader::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 300px;
	min-height: 8px;
	background-color: rgba(11, 11, 11, 0.5);
}

#loadMyPage .loader::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 30px;
	min-height: 8px;
	background-color: orange;
	animation: load 1.5s linear infinite;
}

@keyframes load {
	0% {
		left: 0;
		width: 0px;
	}
	50% {
		left: 150px;
		width: 150px;
	}
	100% {
		left: 300px;
		width: 0px;
	}
}

#loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loader-backdrop {
	content: "";
	position: fixed;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 999;
	width: 100vw;
	height: 100vh;
}

.border-bottom {
	border-bottom: 1px solid #ccc;
	padding-bottom: 1rem;
}
