/*
Theme Name: Pipl Theme
Theme version: 1.0
Theme author: Pragyaware Informatics Private Limited
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
    --primary-color: #1976D2;
    --secondary-color: #0D3D6C;
    --metallic-blue: #55768B;
    --bright-grey: #333D52;
    --black-color: #262626;
    --nude-black: #2D2C2C;
    --green-color: #16892f;
    --light-green-color: #bcfdc9;
    --light-blue-color: #99ccff;
    --danger-color: #EE1212;
    --light-danger-color: #f3c0c0;
    --warning-color: #AD8311;
    --light-warning-color: #ffe6a4;
    --grey-color: #7D7979;
    --yellow-color: #FEAE02;
    --white-color: #ffffff;
    --titan-white: #EEEFF8;
}
/*-------------------------- reset css start --------------------------*/
* { margin: 0; padding: 0; box-sizing: border-box; }
a{text-decoration: none;color: inherit;}
ul,ol,dl{ padding-left: 0px;}
img {
  max-width: 100%; /* Ensure images are responsive */
}
/* Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/* Improve line wrapping */
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
/*Inherit fonts for form controls */
input, button, textarea, select { font: inherit; }
select:has(option:checked:not([value=""])) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
select[multiple=multiple]:has(option:checked:not([value=""])){
  overflow: auto;
}

/*-------------------------- reset css end --------------------------*/
/*-------------------------- common css start --------------------------*/
.page-title {
  margin-bottom: 0.5rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: #26527B;
  letter-spacing: 0.01em;
}
.field-group { position: relative; }
.field-group .field-group-text {
  position: absolute;
  top: 8px;
  right: 13px;
  z-index: 1;
}

.modal .btn-close {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  background-size: 50%;
  opacity: 1;
}
.saving-row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.content-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.saving-row .label, .saving-row .value {
  font-size: 15px;
}
.form-btns {
  margin-top: 10px;
}
.btn {
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 6px 16px;
  transition: ease .3s all;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: ease .5s all;
}
html body .btn:active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}
.btn img{ vertical-align: middle; }
.filter-btn .btn{
  padding: 6px 18px;
  border-radius: 6px;
}
.filter .primary-btn{ background: var(--primary-color); }
.primary-btn{
  background: var(--primary-color);
  color: var(--white-color);
}
.primary-btn:hover{
  background: var(--secondary-color);
  color: var(--white-color);
}
.secondary-btn{
  background-color: #333D52;
  color: var(--white-color);
}
.secondary-btn:hover{
  background: var(--secondary-color);
  color: var(--white-color);
}
.cancel-btn{
  background-color: #cbdae7;
  color: #4c4f52;
}
.cancel-btn:hover{
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.content .card {
  background-color: var(--white-color);
  border-color: #CBD8E0;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(170 189 232 / 12%);
}
.content .card .card-body{ padding: 20px; }
.status-badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  min-width: 55px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-align: center;
}
.primary-badge{
  background-color: #E2E5FF;
  color: var(--secondary-color);
}
.active-badge{
  background-color: var(--light-green-color);
  color: var(--green-color);;
}
.inactive-badge{
  background-color: var(--light-danger-color);
  color: var(--danger-color);;
}
.pending-badge{
  background-color: var(--light-warning-color);
  color: var(--warning-color);;
}
.graph-card{
  overflow: auto;
}
.graph-card .card-header{
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1;
}
.d-card-table table > tbody > tr:first-child:has(th) {
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-link{
  display: inline-block;
  padding: 0.35em 0.65em;
  min-width: 70px;
  background: var(--primary-color);
  border-width: 1px;
  border-style: solid;
  border-radius: 50px;
  color:var(--white-color);
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  transition: ease .3s all;
}
.table-link:hover{
  background: var(--secondary-color);
  color: var(--white-color);
}
.action-btn:not(:empty){
  display: inline-block;
  padding: 0.5em 0.5em;
  width: max-content;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: ease-in-out .3s all;
  vertical-align: middle;
}
.action-btn:hover{ transform: scale(1.01); }
.view-btn{ background-color: var(--light-blue-color); color: #0d1f30;}
.view-btn:hover { background: #579de3; color: var(--white-color); }
.approve-btn{ background-color: var(--light-green-color); color: var(--green-color); }
.approve-btn:hover { background: #30a848; color: var(--white-color); }
.delete-btn{ background-color: var(--light-danger-color); color: #bb0e0e;}
.delete-btn:hover{ background-color: #f19d9d; color: #bb0e0e;}
.edit-btn{ background-color: var(--light-warning-color); color: #554211;}
.edit-btn:hover { background: #fceba4; color: #554211;}

table, .table{margin-bottom: 0px;}
.table-data { padding-top: 30px; }
.dataTable > thead > tr > th,.dataTable > tbody > tr > td, .table > tbody > tr > td { 
  vertical-align: top; 
  font-size: 13px;
}
.table > thead > tr > th, .dataTable > thead > tr > th {
  background-color: #F6F7FF !important;
  color: var(--black-color) !important;
  font-size: 13px;
  font-weight: 700;
  border-color: #E2E5FF;
}
.dataTables_scroll {
  border: 2px solid #E2E5FF;
  border-radius: 10px;
  overflow: hidden;
}
.table-striped>tbody>tr:nth-of-type(odd)>*{
  background-color: var(--white-color);
  box-shadow: none;
}
table tr:nth-child(even) td,
.table tr:nth-child(even) td,
.dataTable tr:nth-child(even) td {
  background: #F6F7FF;
}
.dataTables_filter input[type=search] { font-size: 1rem; }
#gridTr_length { display: none; }
.dataTables_length label {
  font-size: 0;
  width: 64px;
  margin-right: 10px;
}
.dataTables_length{float: left;}
.dataTables_scroll{clear: both;}
.table-hover>tbody>tr:hover>*{
  box-shadow: inset 0 0 0 9999px rgb(223 227 255);
  transition: ease .3s all;
}
table > tbody > tr:is(.tfoot) {
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 9;
}

table > tbody > tr:is(.tfoot) > td {
  font-size: 16px;
  font-weight: 700;
  background-color: var(--white-color);
}

table > tbody > tr:is(.tfoot) > td:nth-child(4) {
  min-width: 130px;
}
/* MY ACCOUNT  */
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.card .card-body .img-fluid { width: 100px !important; }
.usr-name { font-size: 25px; margin-top: 10px; }
.details label { color: #635f5f; }
.media .media-icon { border-radius: 110px; width: 45px; height: 45px; }
.manage-rights tr > td { padding: 10px 5px; }
.manage-rights .manage-rights-cat label {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 0;
}
.media-icon.bg-primary-transparent.text-success { margin-right: 16px; }
.contact-details .media .media-icon.bg-primary-transparent.text-primary { background-color: rgb(98 89 202 / 15%); }
.contact-details .media .media-icon.bg-primary-transparent.text-primary i.fas.fa-mobile-alt {
  color: #6259ca;
  font-size: 20px;
  padding: 12px 0px 0px 16px;
}
.contact-details .media .media-icon.bg-primary-transparent.text-success {
  background-color: rgb(40 167 69 / .15);
}
.contact-details .media .media-icon.bg-primary-transparent.text-success i.fas.fa-envelope {
  font-size: 16px;
  padding: 15px;
}
.contact-details .media-icon.bg-primary-transparent.text-info.mr-3 {
  background-color: rgb(23 162 184 / .15);
}
.contact-details .media-icon.bg-primary-transparent.text-info i.fas.fa-briefcase {
  font-size: 16px;
  padding: 15px 0px 0px 15px;
}
.contact-details label, .personal-details label  { font-weight: 600; }
.personal-details .media .media-icon.bg-primary-transparent.text-primary {
  background-color: rgb(255 129 163 / .15);
}

.personal-details .media .media-icon.bg-primary-transparent.text-primary i.fas.fa-user {
  color: #ff81a3;
  font-size: 16px;
  padding: 13px 0px 0px 17px;
}
.personal-details .media-icon.bg-primary-transparent.text-info { background-color: rgb(23 162 184 / .15); }
.personal-details .media .media-icon.bg-primary-transparent.text-white{ background-color: rgb(252 145 79 / .15); }
.personal-details .media .media-icon.bg-primary-transparent.text-white i.fas.fa-briefcase {
  font-size: 16px;
  padding: 15px 0px 0px 15px;
  color: #fc914f;
}
.personal-details .media-icon.bg-primary-transparent.text-info.mr-3 { background-color: rgb(23 162 184 / .15); }
.personal-details .media-icon.bg-primary-transparent.text-info i.fas.fa-briefcase {
  font-size: 16px;
  padding: 15px 0px 0px 15px;
}
.content .d-card-table { max-height: 395px; min-height: 394px; }
/*-------------------------- pagination css start -----------------------------*/
.dataTables_paginate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  float: right;
}
.dataTables_info{
  float: left;
  margin-top: 20px;
}
/* Pagination Buttons */
.dataTables_paginate span{
  display: flex;
  gap: 10px;
}
.dataTables_paginate a.paginate_button {
  color: var(--black-color);
  border: 1px solid #ddd;
  background-color: var(--white-color);
  padding: 0.4rem 0.82rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
/* Hover Effect */
.dataTables_paginate a.paginate_button:not(.disabled):hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}
/* Active (Current Page) */
.dataTables_paginate a.paginate_button.current {
  background-color: var(--secondary-color);
  color: var(--white-color) !important;
  border-color: var(--secondary-color);
  font-weight: 600;
  cursor: default;
}
/* Disabled Buttons (Previous / Next) */
.dataTables_paginate a.paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f8f9fa;
}
/* Ellipsis (…) */
.dataTables_paginate span.ellipsis {
  padding: 6px 10px;
  color: var(--metallic-blue);
  font-weight: 500;
}
/*-------------------------- pagination css end --------------------------*/
.form-control, .form-select, input, select, textarea{
  font-size: 0.875rem;
}
.form-control, .form-select {
  padding: .532rem .75rem;
  border-radius: 6px;
  border-width: 1px;
  border-color: #E2E5FF;
}
.form-control:focus,.form-select:focus{
  box-shadow: none;
  border-color: var(--primary-color);
}
.form-label {
  display: block;
  font-weight: 400;
  color: var(--nude-black);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(81, 94, 204, 0.1), 0 5px 15px rgba(81, 94, 204, 0.2);
  transform: translateY(-2px);
}
input[readonly] { background-color: #FAFAFA; }
.form-label{font-weight: 500;}
.card-header {
  padding: 1rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
}
.card-header .card-title {
  margin: 0;
  font-size: 1.25em;
  color: var(--white-color);
}
.nav-tabs .nav-link {
  font-size: 1rem;
  border: none;
  border-radius: 0;
  color: var(--black-color);
}
.nav-tabs .nav-link.active {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
}
/*-------------------------- common css end --------------------------*/
/* login page css start */
.login-section{
  background: var(--titan-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 51, 102, 0.4);
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  animation: slideIn 0.6s ease-out;
  position: relative;
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.login-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.logo-container {
  margin-bottom: 20px;
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.login-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.login-header p {
  margin: 5px 0 0 0;
  opacity: 0.95;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.captcha-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
.captcha-box {
  flex: 1;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 0.386rem 0.75rem;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--bright-grey);
  user-select: none;
  font-family: 'Courier New', monospace;
  text-decoration: line-through;
  border: 2px solid #90caf9;
}
.refresh-captcha {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  border: none;
  padding: .585rem 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.refresh-captcha:hover {
  background: linear-gradient(135deg,  var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: rotate(180deg);
}
.forgot-password {
  text-align: right;
  margin-bottom: 1rem;
}
.forgot-password a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
/* login page css end */
/* Tabs */
.dashboard-tabs{
  /* background:#e9edf7; */
  border-radius:40px;
  padding:10px;
  display:flex;
  gap:12px;
  overflow:auto;
  white-space:nowrap;
}

.dashboard-tabs .nav-link {
  background:#e9edf7;
  border-radius: 30px;
  color: var(--secondary-color);
  font-weight: 500;
  padding: 6px 16px;
  transition: .3s;
  font-size: 14px;
}

.dashboard-tabs .nav-link.active{
  background: var(--primary-color);
  color: var(--white-color);
}

/* Cards */
.summary-card{
  border:1px solid #d7e3f1;
  border-radius:14px;
  background:var(--white-color);
  padding:0.625rem;
  align-items: start;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  height:100%;
}

.summary-card .value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.summary-card .title {
  color: #506b84;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
}

.icon-box{
  width:42px;
  height:42px;
  border-radius:10px;
  background:var(--white-color);
  box-shadow:0 3px 10px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-color);
  font-size:20px;
}
.text-green{
  color:#16892f;
}
.text-orange{
  color:#f4a100;
}
.text-red{
  color:#ff1e1e;
}
.text-blue{
  color:#3d8ef7;
}
/*-------------------------- admin css start --------------------------*/
body {
  font-family: "Inter", sans-serif;
  height: 100vh;
  background-color: var(--white-color);
  font-size: 0.9rem;
}
.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand>a,
.sidebar-wrapper .sidebar-dropdown>a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*---------------- Page-Wrapper Css Start ----------------*/
.page-wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  min-height: calc(100vh - 72px);
  height: auto;
}
.page-wrapper.toggled .sidebar-wrapper { 
  margin-left: 0px; 
  width: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}
.pipl-theme .sidebar-wrapper { 
  background-color: var(--bright-grey);
  flex-shrink: 0;
}
.pipl-theme .sidebar-wrapper {
  width: 46px;
  height: auto;
  position: relative;
  top: 0;
  z-index: 999;
}
.pipl-theme .sidebar-wrapper::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.pipl-theme .sidebar-wrapper::-webkit-scrollbar{
	width: 6px;
	background-color: #F5F5F5;
}

.pipl-theme .sidebar-wrapper::-webkit-scrollbar-thumb
{
	background-color: var(--metallic-blue);
	border: 2px solid var(--metallic-blue);
}
.pipl-theme .sidebar-wrapper .sidebar-content {
  height: 100vh;
  position: relative;
}
.pipl-theme .sidebar-wrapper .sidebar-top { 
  height: 72px; 
  background-color: var(--titan-white);
  position: sticky;
  top: 0;
  z-index: 6;
}
.pipl-theme .sidebar-wrapper .sidebar-brand {
  padding: 3px 16px;
  display: flex;
  align-items: center;
  height: 100%;
}
.pipl-theme .sidebar-wrapper .sidebar-brand .brand-title {
  width: 154px;
  flex-shrink: 0;
}
.pipl-theme .sidebar-wrapper .sidebar-brand .brand-title h1{
  color: #16419C;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
}
.pipl-theme .sidebar-wrapper .sidebar-brand .brand-title .subtitle { 
  color: #16419C;
  font-size: 10px;
  line-height: 14px;
  font-weight: bold;
  margin-bottom: 0;
}
.page-wrapper:not(.toggled) .sidebar-wrapper .sidebar-brand{
  padding: 18px 6px;
  align-items: center;
}
.page-wrapper:not(.toggled) .sidebar-wrapper .sidebar-brand > img{
  transition: ease-in-out .3s all;
}
.page-wrapper:not(.toggled) .sidebar-wrapper .brand-title{ 
  display: none; 
}
/*-------------------------- Sidebar-menu css start --------------------------*/
.pipl-theme .sidebar-wrapper .sidebar-menu {
  padding-top: 16px;
  padding-bottom: 10px;
  /* height: calc(100vh - 72px); */
  /* max-height: 100%; */
  overflow-y: auto;
}
.pipl-theme .sidebar-wrapper .sidebar-menu ul { 
  list-style-type: none; 
  padding: 0; 
  margin: 0; 
}
.pipl-theme .sidebar-wrapper .sidebar-menu ul li a, 
.pipl-theme .sidebar-wrapper .sidebar-menu ul li button {
  color: var(--white-color);
}
.sidebar-wrapper .sidebar-menu .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(255 255 255 / 0.18);
}
.pipl-theme .sidebar-wrapper .sidebar-menu ul li a, 
.pipl-theme .sidebar-wrapper .sidebar-menu ul li .nav-link {
  padding: 10px 10px 10px 10px;
  display: block;
  width: 100%;
  position: relative;
  color: var(--white-color);
  font-size: 14px;
  text-decoration: none;
  text-align: left;
}
.pipl-theme .sidebar-wrapper .sidebar-menu ul li > a { 
  overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap; 
}
.sidebar-menu .nav-item .nav-link i {
  padding-right: 0.625rem;
  font-size: 1.15em;
}

/* .page-wrapper.toggled .sidebar-wrapper .sidebar-menu .nav-item .nav-link img{ 
  margin-right: 10px; 
} */
.pipl-theme .dropdown .dropdown-toggle{ background-color: transparent; border: none; }
.pipl-theme .dropdown .dropdown-toggle.active{ 
  background-color: rgba(222 223 255 / 35%); 
}
.pipl-theme .dropdown > .dropdown-list > .dropdown > .nav-link:is(.active) {
  background-color: rgba(255 255 255 /0.15);
}
.pipl-theme .sidebar-wrapper .sidebar-menu ul li a.active { 
  background: rgba(222 223 255 / 20%);
}
.pipl-theme .sidebar-wrapper .sidebar-menu .dropdown .dropdown-toggle::after{
  float: right; 
  margin-top: 12px; 
  border-width: .4em;
}
.pipl-theme:not(.toggled) .sidebar-wrapper .sidebar-menu .dropdown .dropdown-toggle::after { 
  float: initial; 
}
.pipl-theme .sidebar-menu .nav-item .nav-link:hover {
  background-color: rgba(255 255 255 / 0.3);
  color: var(--white-color) !important;
  border-right: 3px solid var(--white-color);
}
.pipl-theme .sidebar-wrapper .sidebar-menu ul li:hover>a{ 
  color: var(--white-color); 
}
.page-wrapper:not(.toggled) .sidebar-wrapper .sidebar-menu .nav-item .nav-link { 
  font-size: 0;
}

/*-------------------------- Sidebar-menu css end --------------------------*/
/*-------------------------- Main-content css start --------------------------*/
.page-wrapper .page-content { 
  min-height: calc(100vh - 41px); 
  display: inline-block; 
  width: 100%; 
  padding-left: 0px; 
  padding-top: 0px; 
  height: auto; 
  overflow-x: inherit;
  flex-shrink: 0;
}
.main-header .header-row {
  display: flex;
  background: var(--titan-white);
  padding: 0.85rem;
  justify-content: space-between;
  align-items: center;
}
#show-sidebar {
  border-radius: 0 4px 4px 0px;
  transition-delay: 0.3s;
  margin-right: 1rem;
  min-width: 20px;
  cursor: pointer;
}
.header-row .left-side .username {
  color: var(--bright-grey);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}
.header-row .right-side > ul{
  margin-bottom: 0;
}
.header-row .right-side > ul > li:not(:last-child) {
  margin-right: 1rem;
}
.header-row .notification{
  position: relative;
}
.header-row .notification .notification-icon { 
  position: relative; 
  animation: hithere 2s ease infinite;
}
@keyframes hithere {
  30% { transform: scale(1.01); }
  40%, 60% { transform: rotate(-10deg) scale(1.01); }
  50% { transform: rotate(10deg) scale(1.01); }
  70% { transform: rotate(0deg) scale(1.01); }
  100% { transform: scale(1); }
}
.header-row .notification .notification-icon  > .badge {
  position: absolute;
  top: -5px;
  left: auto;
  right: -2px;
  line-height: 1rem;
  padding: 0.0001rem 0.355rem;
  background-color: var(--yellow-color);
  color: var(--black-color);
}
.header-row .user-profile {
  align-items: center;
  gap: 10px;
}
.header-row .random-letter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-right: 0.325rem;
    background: rgb(13 62 109);
    text-align: center;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    vertical-align: middle;
}
.header-row .user-name {
  font-size: 14px;
  color: var(--bright-grey);
  letter-spacing: 0.02em;
  font-weight: 500;
  width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}
label sup{
  color: var(--danger-color);
}

.header-row .user-name {
  font-size: 15px;
  color: var(--secondary);
  letter-spacing: 0.02em;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-menu .dropdown-item {
  padding: 0.5rem;
  border-radius: 0.325rem;
  transition: background .3s ease;
}

.dropdown-menu[data-bs-popper]{
  left: auto !important;
}

#userDropdown {
  overflow: hidden;
  min-width: 200px;
}
/*-------------------------- breadcrumb css start --------------------------*/
.page-wrapper .main-content .breadcrumb-area{ 
  padding: 15px 20px; 
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); 
}
.page-wrapper .main-content>.content {
  padding: 30px 15px;
  min-height: 100vh;
}
.page-wrapper .main-content>.content .breadcrumb { margin: 0; }
.page-wrapper .main-content>.content .breadcrumb .breadcrumb-item { font-size: 16px; }
.breadcrumb .breadcrumb-item > a { 
  color: var(--metallic-blue); 
  text-decoration: none; 
}
.breadcrumb .breadcrumb-item.active { 
  color: #26527B; 
  font-weight: 500; 
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--black-color); }
/* -------------------------- breadcrumb css end --------------------------*/
/*-------------------------- main-content css end --------------------------*/
.manage-rights tr > td { padding: 10px 5px; }
.manage-rights .manage-rights-cat label {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 0;
}
.checkbox-label label { margin-bottom: 0; margin-left: 10px; }
/*-------------------------- footer css start -----------------------------*/
.app-footer {
  background: var(--primary-color);
  color: var(--white-color);
  margin-top: 50px;
  padding: 6px;
  clear: both;
}
.app-footer p {
  margin: 0;
  font-size: 13px;
}
/*-------------------------- page-content end -----------------------------*/
/*-------------------------- scroll bar -----------------------------*/
.sidebar-menu::-webkit-scrollbar { width: 5px; height: 7px; }
.sidebar-menu::-webkit-scrollbar-button { width: 0px; height: 0px; }
.sidebar-menu::-webkit-scrollbar-thumb { background: #525965; border: 0px none var(--white-color); border-radius: 0px; }
.sidebar-menu::-webkit-scrollbar-thumb:hover { background: #525965; }
.sidebar-menu::-webkit-scrollbar-thumb:active { background: #525965; }
.sidebar-menu::-webkit-scrollbar-track { background: transparent; border: 0px none var(--white-color); border-radius: 50px; }
.sidebar-menu::-webkit-scrollbar-track:hover { background: transparent; }
.sidebar-menu::-webkit-scrollbar-track:active { background: transparent; }
.sidebar-menu::-webkit-scrollbar-corner { background: transparent; } 
/* notification css start */
.popover-container{
  background-color: var(--white-color);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 40px);
  right: 0;
  width: max-content;
  min-width: 400px;
  border-radius: 16px;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 9;
}
.popover-container:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: 10px;
  top: -10px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--white-color) transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.top-item:hover .popover-container{
  visibility: visible;
  opacity: 1;
  transform: translate(0, 10px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover-container .notification-list{
  padding-left: 0px;
  height: auto;
  max-height: 250px;
  overflow-y: auto;
  list-style: none;
}
.notification-list .notification-item {
  border-bottom: 1px solid #E2E5FF;
  padding: 0.5rem 0.5rem;
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.notification-list .notification-item:hover {
  background-color: #F6F7FF;
}
.notification-item .nav-link .date-time {
  color: var(--metallic-blue);
}
.popover-header-custom {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.25rem;
  border-radius: 16px 16px 0 0;
}
.popover-header-custom h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
}
.popover-header-custom p {
  margin: 0.5rem 0 0 0;
  color: #bfdbfe;
  font-size: 0.875rem;
}
.nav-tabs-custom {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.nav-tabs-custom .nav-link {
  border: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s;
}
.nav-tabs-custom .nav-link:hover {
  color: var(--primary-color);
  background: #f3f4f6;
}
.nav-tabs-custom .nav-link.active {
  color: var(--primary-color);
  background: white;
  border-bottom: 2px solid var(--primary-color);
}
.popover-body-custom {
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
}
.alert-section {
  padding: 1.25rem;
  border-bottom: 1px solid #f3f4f6;
}
.alert-section:last-child { border-bottom: none; }
.alert-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.alert-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-icon.danger {
  background: var(--light-danger-color);
  color: var(--danger-color);
}
.alert-icon.warning {
  background: #fed7aa;
  color: #ea580c;
}
.alert-icon.yellow {
  background: var(--light-warning-color);
  color: var(--warning-color);
}
.alert-icon.secondary {
  background: #f3f4f6;
  color: #6b7280;
}
.alert-header-text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 0.938rem;
  color: #1f2937;
}
.alert-header-text small {
  color: #6b7280;
  font-size: 0.75rem;
}
.alert-card {
  border-radius: 8px;
  padding: 0.875rem;
  margin-bottom: 0.5rem;
  border: 1px solid;
  transition: all 0.2s;
  cursor: pointer;
}
.alert-card:hover { transform: translateX(2px); }
.alert-card.danger {
  background: var(--light-danger-color);
  border-color: #fecaca;
}
.alert-card.danger:hover {
  background: #fee2e2;
}
.alert-card.warning {
  background: #fff7ed;
  border-color: #fed7aa;
}
.alert-card.warning:hover {
  background: #ffedd5;
}
.alert-card.yellow {
  background: var(--light-warning-color);
  border-color: #fef08a;
}
.alert-card.yellow:hover {
  background: #fef3c7;
}
.alert-card.secondary {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.alert-card.secondary:hover {
  background: #f3f4f6;
}
.progress-custom {
  height: 6px;
  background: white;
  border-radius: 10px;
  margin: 0.5rem 0;
}
.progress-bar-custom {
  background: #ea580c;
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s;
}
.badge-custom {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
}
.badge-danger-custom {
  background: var(--light-danger-color);
  color: var(--danger-color);
}
.badge-warning-custom {
  background: #fde68a;
  color: #92400e;
}
.badge-secondary-custom {
  background: #e5e7eb;
  color: #374151;
}
.popover-footer {
  background: #f9fafb;
  padding: 0.75rem;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.popover-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.popover-footer a:hover {
  color: var(--primary-color);
}
.chevron-icon {
  color: #9ca3af;
  transition: color 0.2s;
}
.alert-card:hover .chevron-icon {
  color: #6b7280;
}
/* notification css end */
/* datepicker css start */
.datepicker td, .datepicker th {
  font-size: 13px;
  font-weight: 400;
  padding: 2px;
}
.datepicker table tr td.active, 
.datepicker table tr td.active.disabled, 
.datepicker table tr td.active.disabled:hover, 
.datepicker table tr td.active:hover{
  background-image: -webkit-linear-gradient(radial,#08c,#04c);
  background: var(--secondary-color);
  background: radial-gradient(circle,rgba(64, 156, 246, 1) 0%, rgba(25, 118, 210, 1) 70%);
  background: -o-radial-gradient(circle,rgba(64, 156, 246, 1) 0%, rgba(25, 118, 210, 1) 70%);
  background: -webkit-radial-gradient(circle,rgba(64, 156, 246, 1) 0%, rgba(25, 118, 210, 1) 70%);
}
/* datepicker css end */
/* dashboard css start */
.dashboard-card{padding: 0.75rem;}
.dashboard-card .dash-icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  background-color: var(--primary-color);
  border-radius: 6px;
  text-align: center;
  font-size: 24px;
  color: var(--white-color);
}
.dashboard-card .card-total {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.675rem;
}
.dashboard-card .total-value {
  font-size: 1.5rem;
  font-weight: bold;
}
.dashboard-card .dash-title {
  margin-bottom: 0;
  color: var(--bright-grey);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
/* dashboard css end */
/* dropbox css start */
.dropbox {
  position: relative;
  width: 100%;
  height: 220px;
  border: 3px dashed #E2E5FF;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #F6F7FF;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 20px;
  gap: 15px;
}
#dropbox {
  position: absolute;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dropbox-text {
  font-size: 18px;
  color: #55768B;
  margin-bottom: 5px;
  font-weight: 600;
}
.dropbox-subtext {
  font-size: 14px;
  color: #55768B;
  text-align: center;
}
.upload-stats {
  background-color:var(--white-color);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 2px 4px 0px rgba(170 189 232 / 12%);
  width: 100%;
  margin-top: 10px;
  display: none;
}
.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.stats-title {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.stats-info {
  display: flex;
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-label {
  font-size: 14px;
  color: #55768B;
}
.stat-value {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
}
.file-preview {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(170 189 232 / 12%);
  transition: all 0.3s ease;
  position: relative;
}
.file-info {
  padding: 12px;
}
.file-name {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 75%;
}
.file-size {
  font-size: 14px;
  color: #55768B;
  font-weight: 500;
}
.file-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
  gap: 20px;
}
.remove-btn {
  background-color: var(--danger-color);
  color:var(--white-color);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.upload-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0px 2px 4px 0px rgba(170 189 232 / 12%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.upload-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.upload-notification.success {
  background-color: #52c41a;
}

.upload-notification.error {
  background-color: var(--danger-color);
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 3s linear;
}

.upload-notification.show .notification-progress {
  transform: scaleX(1);
}

.upload-stats {
  background-color:var(--white-color);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  margin-top: 10px;
  display: none;
}
.progress-bar{
  background-color: var(--secondary-color);
}
.empty-state {
  display: none;
  text-align: center;
  padding: 30px;
  color: #55768B;
}
/* dropbox css end */
/* manage rights css start */
.user-rights tbody > tr > td label {
    margin-left: 10px;
    font-weight: 400;
    font-size: 15px;
}

.user-rights tbody > tr > td input[type=checkbox] {
  width: 18px;
  height: 18px;
}
/* manage rights css end */

table > tbody > tr > td .form-select, 
table > tbody > tr > td .form-control {
  padding: 0.132rem 0.25rem;
  min-width: 140px;
}

/* media query css start */
@media screen and (max-width: 1366px){
  #chkFeature.test label{font-size: 12px;}
}
@media screen and (max-width: 991px){
  .page-wrapper.toggled .sidebar-wrapper{ 
    width: 0;
    flex-shrink: 0;
    margin-left: 0px; 
  }
  .page-wrapper:not(.toggled) .sidebar-wrapper{
    width: 250px;
    position: fixed;
    right: 0;
    z-index: 999;
  }
  .page-wrapper:not(.toggled) .sidebar-wrapper .brand-title{display: block;}
  .page-wrapper:not(.toggled) .sidebar-wrapper .sidebar-menu .nav-item .nav-link {
    font-size: 14px;
  }
  .page-title{
    font-size: 1.1rem;
  }
  .breadcrumb .breadcrumb-item > a,
  .page-wrapper .main-content>.content .breadcrumb .breadcrumb-item{
    font-size: 14px;
  }
  .page-wrapper:not(.toggled) .page-content{width: calc(100% - 250px);}
  .popover-container{
    min-width: 350px;
    right: -102px;
  }
  .popover-container:before{
    right: 106px;
  }
}
@media screen and (max-width: 576px){
  .main-header .header-row{
    padding: 0.5rem;
  }
  #show-sidebar{width: 30px;margin-right: 0.5rem;}
  .notification-icon img{ width: 24px; }
  .header-row .notification .notification-icon > .badge{ right: -8px; }
  .header-row .left-side .username{ font-size: 14px; }
  .page-wrapper:not(.toggled) .page-content{
    width: 100%;
  }
  .page-wrapper .main-content>.content {
    padding-right: 5px;
    padding-left: 5px; 
  }
  .dataTables_paginate a.paginate_button {
    padding: 4px 8px;
    font-size: 12px;
  }
}
