html,
body {
	height: 100%;
	font-family: "Poppins", serif;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
a {
	text-decoration: none;
}
p { 
	font-size: 1.2rem;
	color: #333333;
	margin-bottom: 0;
}
i {
	font-size: 20px;
	cursor: pointer;
	margin-right: 5px;
}
.bg-primary {
	background: #6c21dd !important;
}
.border-primary {
	border-color: #6c21dd !important;
}
.btn:hover {
	background: #6c21dd;
}
.btn {
	min-height: 42px;
}
.btn-primary {
	background: #6c21dd !important;
	border-color: #6c21dd !important;
}
.text-primary {
	color: #6c21dd !important;
}
.form-control {
	height: 42px;
}
.form-control:focus {
  color: #212529;
  background-color: #fff0;
  border-color: #ced4da;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(178, 13, 253, 0);
}
.page-wrapper {
	width: 100%;
	height: 100%;
	background: #e7ecf0;
}
.login-wrapper .card-body {
	padding: 24px;
}
.table-bordered td, .table-bordered th {
  border: 1px solid #e3e6f0;
}
.table th {
  background-color: #f2f2f2;
}
.col1 {
  left: 0px;
}
.left {
  position: sticky;
  background-color: #ffffff;
}
.bg-green {
  background-color: #a8e1a8 !important;
  color: #000000;
}
.bg-red {
  background-color: #f78383 !important;
  color: #000000;
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
#loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}