@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid rgba(68, 72, 109, 0.2);
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

.layout-breadcrumb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding-top: 30px;
}
.layout-breadcrumb-container .layout-breadcrumb {
  background: transparent;
  border: 0 none;
  border-radius: 0;
  padding: 7px 0 7px 30px;
}
.layout-breadcrumb-container .layout-breadcrumb ul li.p-breadcrumb-chevron {
  margin: 0 0.75rem;
}
.layout-breadcrumb-container .layout-breadcrumb ul li.p-breadcrumb-chevron::before {
  content: "⁄";
  font-weight: bold;
  font-size: 1.25rem;
}
.layout-breadcrumb-container .layout-breadcrumb ul li .p-menuitem-link {
  font-size: 1.25rem;
}
.layout-breadcrumb-container .layout-breadcrumb ul li .p-menuitem-link .p-menuitem-text {
  color: #8A8EA6;
}
.layout-breadcrumb-container .layout-breadcrumb ul li:last-child .p-menuitem-text {
  color: #44486D;
}
.layout-breadcrumb-container .layout-breadcrumb-left-items {
  display: flex;
  align-items: center;
}
.layout-breadcrumb-container .layout-breadcrumb-right-items {
  display: flex;
}
.layout-breadcrumb-container .layout-breadcrumb-right-items .search-icon {
  display: none;
  align-items: center;
  justify-content: center;
  color: #44486D;
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}
.layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper {
  transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
}
.layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper .p-input-icon-left {
  margin-right: 0.5rem;
  width: 100%;
}
.layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper .p-input-icon-left input {
  background: transparent;
  border-color: transparent;
}

@media screen and (max-width: 991px) {
  .layout-breadcrumb-container .layout-breadcrumb-right-items .search-icon {
    display: flex;
  }
  .layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper {
    width: 0;
    position: absolute;
    right: 40px;
    background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  }
  .layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper input {
    width: 0;
  }
  .layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper i {
    color: transparent;
  }
  .layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper.active-search-wrapper {
    width: calc(100% - 70px);
    transition: width 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  }
  .layout-breadcrumb-container .layout-breadcrumb-right-items .search-wrapper.active-search-wrapper input {
    width: 100%;
  }
}
.layout-topbar {
  z-index: 100;
  border-radius: 0 0 20px 20px;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  min-height: 4em;
  align-items: center;
  justify-content: space-between;
}
.layout-topbar .layout-topbar-left {
  flex: 0 0 auto;
  display: none;
  align-items: center;
}
.layout-topbar .layout-topbar-left .logo {
  display: none;
  margin-left: 20px;
}
.layout-topbar .layout-topbar-left .logo img {
  height: 2rem;
}
.layout-topbar .layout-topbar-left .app-name {
  display: none;
  margin-left: 9px;
  height: 1.714rem;
}
.layout-topbar .layout-topbar-left .topbar-menu-button {
  display: none;
  width: 32px;
  height: 32px;
  line-height: 35px;
  margin-left: 20px;
  text-align: center;
  border-radius: 6px;
  background-color: rgba(68, 72, 109, 0.07);
  color: #676B89;
  transition: color 0.3s;
}
.layout-topbar .layout-topbar-left .topbar-menu-button:hover {
  color: #44486D;
}
.layout-topbar .layout-topbar-left .topbar-menu-button i {
  font-size: 1.25rem;
}
.layout-topbar .layout-topbar-right {
  display: none;
  flex: 0 0 auto;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items {
  list-style-type: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  height: 100%;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li {
  display: flex;
  align-items: center;
  position: relative;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > a, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button {
  position: relative;
  display: flex;
  align-items: center;
  color: #676B89;
  background-color: rgba(68, 72, 109, 0.07);
  width: 36px;
  height: 36px;
  margin: 0 0.4rem;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > a:hover, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button:hover {
  color: #44486D;
  background-color: rgba(68, 72, 109, 0.12);
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > a .topbar-icon, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button .topbar-icon {
  font-size: 1.5rem;
  transition: color 0.3s;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > a .topbar-item-name, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button .topbar-item-name {
  display: none;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > a .topbar-badge, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button .topbar-badge {
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: #387cf7;
  color: #ffffff;
  padding: 2px 4px;
  display: block;
  font-size: 11px;
  line-height: 10px;
  border-radius: 8px;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li.profile-item {
  margin-right: 20px;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li.profile-item > a, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.profile-item button {
  background-color: transparent;
  padding: 0;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li.profile-item > a img, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.profile-item button img {
  width: 32px;
  height: 32px;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul {
  position: absolute;
  top: 56px;
  right: 0;
  display: none;
  min-width: 12rem;
  animation-duration: 0.5s;
  list-style-type: none;
  margin: 0;
  z-index: 1;
  padding: 8px 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button {
  padding: 10px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #676B89;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a i, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button i {
  margin-right: 8px;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a img, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button img {
  margin-right: 8px;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a i, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a img, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a span, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button i, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button img, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button span {
  vertical-align: middle;
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul a:hover, .layout-topbar .layout-topbar-right .layout-topbar-right-items > li > ul button:hover {
  color: #44486D;
  background-color: rgba(68, 72, 109, 0.07);
}
.layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul {
  display: block;
}

@media (max-width: 991px) {
  .layout-wrapper .layout-topbar {
    padding: 0;
    display: flex;
  }
  .layout-wrapper .layout-topbar .layout-topbar-left {
    display: flex;
  }
  .layout-wrapper .layout-topbar .layout-topbar-left .logo {
    display: inline;
  }
  .layout-wrapper .layout-topbar .layout-topbar-left .app-name {
    display: inline;
    height: 0.714em;
  }
  .layout-wrapper .layout-topbar .layout-topbar-left .topbar-menu-button {
    display: inline;
  }
  .layout-wrapper .layout-topbar .layout-topbar-right {
    display: inline;
  }
}
html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  color: #44486D;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body a, body button {
  color: #387cf7;
  text-decoration: none;
}

.layout-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background: url("../../../layout/images/effect-onlight.png");
  background-repeat: no-repeat;
}
.layout-wrapper .layout-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  transition: margin-left 0.3s;
}
.layout-wrapper .layout-main .layout-main-content {
  flex: 1 1 0;
  padding: 30px;
}

@media screen and (max-width: 991px) {
  .layout-wrapper .layout-main .layout-menu-wrapper {
    display: none;
  }
  .layout-wrapper .layout-main .layout-topbar .layout-menu-wrapper {
    display: flex;
  }
}
.layout-menu-wrapper {
  position: fixed;
  height: 100%;
  width: 21rem;
  left: 0;
  top: 0;
  z-index: 997;
  transform: none;
  border-radius: 0px 40px 40px 0px;
  display: flex;
  flex-direction: column;
}
.layout-menu-wrapper .menu-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 22px 0 34px;
}
.layout-menu-wrapper .menu-logo .menu-pin {
  display: none;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border-radius: 6px;
  transition: all 0.2s;
}
.layout-menu-wrapper .menu-logo .menu-pin > span {
  font-size: 1.25rem;
}
.layout-menu-wrapper .menu-logo .logo img {
  height: 2.5rem;
  border: 0 none;
}
.layout-menu-wrapper .menu-logo .app-name img {
  height: 1.714rem;
  padding-left: 16px;
}
.layout-menu-wrapper ul {
  margin: 0;
  padding: 0;
  outline: 0;
  overflow: hidden;
  list-style-type: none;
}
.layout-menu-wrapper .layout-menu-container {
  height: 100%;
  overflow: auto;
  padding-bottom: 2rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu {
  padding: 0 1.5rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li {
  border-radius: 8px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 12px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div > .layout-menuitem-text {
  font-size: 0.857rem;
  font-weight: 600;
  text-transform: uppercase;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a .layout-menuitem-text {
  margin-left: 1rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a .layout-submenu-toggler {
  margin-left: auto;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a.rotated-icon .layout-menuitem-icon {
  transform: rotate(90deg);
}
.layout-menu-wrapper .layout-menu-container .layout-menu li a .p-badge {
  margin-left: auto !important;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  transition: all 0.2s;
  transform: rotate(-180deg);
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul {
  padding: 0;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul li ul {
  padding: 0 0 0.25rem;
  overflow: hidden;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li {
  margin-top: 0.2rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li.layout-root-menuitem > a {
  display: flex;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li a {
  padding-left: 16px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li a {
  padding-left: 24px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li a {
  padding-left: 32px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li a {
  padding-left: 40px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li a {
  padding-left: 48px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li ul li a {
  padding-left: 56px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li ul li ul li a {
  padding-left: 64px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu > li:first-child {
  margin-top: 2rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu .layout-menu-enter-from,
.layout-menu-wrapper .layout-menu-container .layout-menu .layout-menu-leave-to {
  max-height: 0;
}
.layout-menu-wrapper .layout-menu-container .layout-menu .layout-menu-enter-to,
.layout-menu-wrapper .layout-menu-container .layout-menu .layout-menu-leave-from {
  max-height: 1000px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu .layout-menu-enter-active {
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}
.layout-menu-wrapper .layout-menu-container .layout-menu .layout-menu-leave-active {
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0, 1, 0, 1);
}

@media screen and (max-width: 991px) {
  .layout-wrapper .layout-menu-wrapper {
    mix-blend-mode: normal;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu {
    padding: 0 1.5rem;
    overflow: auto;
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu li.layout-root-menuitem > div {
    display: none;
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu li ul li {
    padding-top: 6px;
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu li ul ul li a {
    padding-right: 11px;
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu li > ul li {
    padding-left: 0.3rem;
    padding-right: 0.2rem;
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu > li {
    padding: 6px;
  }
  .layout-wrapper .layout-menu-wrapper .layout-menu > li > a {
    padding: 0.75rem 1.25rem;
  }
  .layout-wrapper.layout-mobile-active .layout-menu-wrapper {
    transform: translateX(0);
  }
}
@media screen and (max-width: 991px) {
  .layout-wrapper.layout-slim .layout-topbar .layout-menu-wrapper .menu-logo .logo {
    display: inline;
  }
  .layout-wrapper.layout-slim .layout-topbar .layout-menu-wrapper .menu-logo .app-name {
    display: inline;
  }
}
@media (min-width: 992px) {
  .layout-wrapper.layout-horizontal .layout-menu-wrapper {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-left {
    display: flex;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-left .menu-button-wrapper .menu-button {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-right {
    display: inline-block;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item a, .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item button {
    display: block;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > .search-input-wrapper {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > ul {
    display: block;
    padding: 0;
    border-radius: 12px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper {
    position: static;
    display: block;
    z-index: auto;
    width: auto;
    height: auto;
    overflow: visible;
    transition: none;
    box-shadow: none;
    flex-grow: 1;
    flex-basis: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .menu-logo {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container {
    overflow: visible;
    padding-bottom: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu {
    padding: 0 3rem;
    overflow: visible;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a i.layout-submenu-toggler, .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem button i.layout-submenu-toggler {
    transform: rotate(-180deg);
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li {
    padding: 0;
    margin: 0 8px;
    display: inline-block;
    position: relative;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li a, .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li button {
    margin: 0px;
    padding: 0.75rem;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li a > span, .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li button > span {
    margin: 0 8px;
    line-height: 14px;
    visibility: visible;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li a > i, .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li button > i {
    font-size: 14px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li a > i.layout-submenu-toggler, .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li button > i.layout-submenu-toggler {
    transition: transform 0.2s;
    margin-left: auto;
    font-size: 12px;
    visibility: visible;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > li.layout-root-menuitem > ul {
    transition: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > ul.layout-menu-enter-from {
    opacity: 0;
    transform: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > ul.layout-menu-leave-to {
    opacity: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > ul.layout-menu-leave-active, .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > ul.layout-menu-enter-active {
    transition: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    list-style-type: none;
    width: 230px;
    position: absolute;
    padding: 10px;
    margin: 0;
    z-index: 100;
    max-height: 460px;
    border-radius: 8px;
    overflow: auto;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li {
    border: 0 none;
    margin: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li a {
    padding-left: 16px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li a {
    padding-left: 24px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li a {
    padding-left: 32px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li a {
    padding-left: 48px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li ul li a {
    padding-left: 56px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 64px;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul {
    list-style-type: none;
    padding: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .logo {
    display: block;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .app-name {
    display: block;
  }
}
@media (min-width: 992px) {
  .layout-wrapper.layout-sidebar.layout-sidebar-static .layout-main {
    margin-left: 21rem;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 6.571rem;
    mix-blend-mode: normal;
    transition: all 0.2s;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .menu-logo {
    padding-left: 25px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .menu-logo .app-name {
    display: none;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active {
    transform: translate3d(0px, 0px, 0px);
    width: 21rem;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .menu-logo .app-name {
    display: inline;
    transition: all 0.2s;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .menu-pin {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container {
    overflow: auto;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu {
    padding-right: 22px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li > a > span {
    visibility: visible;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li > a > i.layout-submenu-toggler {
    visibility: visible;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li > ul > li a {
    transition: all 0.2s;
    padding-left: 16px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li ul li ul li a {
    padding-left: 24px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li ul li ul li ul li a {
    padding-left: 32px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li ul li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li ul li ul li ul li ul li ul li a {
    padding-left: 48px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li ul li ul li ul li ul li ul li ul li a {
    padding-left: 56px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 64px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-text, .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-icon {
    visibility: visible;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-icon {
    transition: all 0.2s;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a span, .layout-wrapper.layout-sidebar .layout-menu-wrapper.layout-sidebar-active .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button span {
    visibility: visible;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container {
    height: 100%;
    overflow: hidden;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu {
    list-style-type: none;
    margin: 0;
    padding: 0 26px 0 22px;
    overflow: hidden;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu > li .layout-menuitem-root-text {
    display: none;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li {
    margin-left: 6px;
    border-radius: 8px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li {
    padding: 6px;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a i.layout-submenu-toggler {
    transform: rotate(-180deg);
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > a {
    margin: 0px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 8px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > a > span {
    margin: 0 0.5rem;
    margin-left: 1rem;
    visibility: hidden;
    white-space: nowrap;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > a > i {
    font-size: 1.25rem;
    width: auto;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > a > i.layout-submenu-toggler {
    transition: transform 0.2s;
    margin-left: auto;
    font-size: 12px;
    visibility: hidden;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > a.rotated-icon .layout-menuitem-icon {
    transform: rotate(90deg);
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul {
    list-style-type: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li {
    padding: 6px 0 0 0;
    margin: 0;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li a {
    transition: all 0.2s;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li ul li {
    padding: 0;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li.layout-root-menuitem > a {
    display: flex;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-text, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-icon {
    white-space: nowrap;
    visibility: hidden;
  }
  .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a span, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button span {
    white-space: nowrap;
    visibility: hidden;
  }
  .layout-wrapper.layout-sidebar .layout-main {
    margin-left: 92px;
  }
  .layout-wrapper.layout-sidebar .layout-main .layout-topbar {
    display: none;
  }
}
.layout-menu-wrapper .menu-logo .menu-pin {
  background: rgba(68, 72, 109, 0.07);
  color: #676B89;
}
.layout-menu-wrapper .menu-logo .menu-pin:hover {
  background: rgba(68, 72, 109, 0.12);
  color: #44486D;
}
.layout-menu-wrapper .layout-inline-menu.layout-inline-menu-active .layout-inline-menu-action img {
  border-color: #387cf7;
  filter: drop-shadow(0px 0px 10px rgba(56, 124, 247, 0.3));
}
.layout-menu-wrapper .layout-inline-menu.layout-inline-menu-active .layout-inline-menu-action:hover img {
  border-color: #387cf7;
  filter: drop-shadow(0px 0px 10px rgba(56, 124, 247, 0.3));
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action:hover img {
  border-color: #8A8EA6;
  filter: drop-shadow(0px 0px 10px rgba(15, 139, 253, 0.3));
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a, .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button {
  color: #44486D;
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a:hover, .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button:hover {
  background-color: rgba(68, 72, 109, 0.07);
}

@media (min-width: 991px) {
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #676B89;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #387cf7;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #387cf7;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #387cf7;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(68, 72, 109, 0.07);
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: #44486D;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(68, 72, 109, 0.07);
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #44486D;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    color: #676B89;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu > li ul li.active-menuitem > a {
    border-left-color: #387cf7;
  }
  .layout-wrapper.layout-static .layout-menu-wrapper .layout-menu-container .layout-menu a.active-route {
    font-weight: bold;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper, .layout-wrapper.layout-sidebar .layout-menu-wrapper {
    background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li a, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li a {
    color: #676B89;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem {
    background: rgba(68, 72, 109, 0.07);
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a:hover, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem ul li.active-menuitem, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem ul li.active-menuitem {
    background: unset;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a {
    color: #44486D;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a:hover, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a.active-route, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a.active-route {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-overlay .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a.active-route:hover, .layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li > ul li > a.active-route:hover {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper {
    background-color: transparent;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #676B89;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: transparent;
    color: #387cf7;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #387cf7;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #387cf7;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #44486D;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #387cf7;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route {
    color: #387cf7;
  }
  .layout-wrapper.layout-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route:hover {
    color: #387cf7;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper {
    background-color: transparent;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #44486D;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a.active-route {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a.active-route:hover {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #44486D;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #387cf7;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: #44486D;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(68, 72, 109, 0.07);
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #44486D;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route i {
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route:hover {
    color: #ffffff;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(68, 72, 109, 0.07);
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
}
@media (max-width: 991px) {
  .layout-menu-wrapper {
    background: linear-gradient(180deg, #F6F9FC 0%, #ECECF9 100%);
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #676B89;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem {
    background: rgba(68, 72, 109, 0.07);
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #676B89;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #676B89;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #44486D;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(68, 72, 109, 0.07);
    color: #44486D;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route {
    background-color: #387cf7;
    color: #ffffff;
  }
  .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul li > a.active-route:hover {
    color: #ffffff;
  }
}
@media (min-width: 991px) {
  .layout-wrapper.layout-slim .layout-menu-wrapper {
    height: 100%;
    position: fixed;
    width: 5.857rem;
    padding: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .menu-logo .app-name {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container {
    overflow: visible;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu {
    overflow: visible;
    padding-right: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li {
    position: relative;
    padding: 5px 0 5px 12px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li .layout-menuitem-root-text {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a {
    margin: 0px;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
    border: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a:before {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a span {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a i {
    margin-right: 0;
    font-size: 1.5rem;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a i.layout-submenu-toggler {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a .menuitem-badge {
    display: none;
    margin-left: auto;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > a:hover + .layout-menu-tooltip {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul {
    position: absolute;
    top: 0;
    left: 60px;
    min-width: 250px;
    max-height: 450px;
    padding: 4px;
    overflow: auto;
    margin-top: 5px;
    border-radius: 8px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li {
    margin: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li > a {
    padding: 6px 8px;
    min-height: 32px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li > a .layout-menuitem-text {
    margin-left: 0.5rem;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li > a > span {
    visibility: visible;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li > a > i.layout-submenu-toggler {
    visibility: visible;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li a {
    padding-left: 16px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li ul li a {
    padding-left: 24px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li ul li ul li a {
    padding-left: 32px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li ul li ul li ul li ul li a {
    padding-left: 48px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 56px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li > ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 64px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li.layout-root-menuitem > ul.layout-menu-enter-from {
    opacity: 0;
    transform: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li.layout-root-menuitem > ul.layout-menu-leave-to {
    opacity: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li.layout-root-menuitem > ul.layout-menu-leave-active, .layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu > li.layout-root-menuitem > ul.layout-menu-enter-active {
    transition: none;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-text,
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action .layout-inline-menu-icon {
    display: none !important;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel {
    padding: 0 0.5rem;
    padding-left: 1.5rem;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
    padding: 5px 12px 5px 12px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a, .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button {
    width: 100%;
    border-left: 0 none;
    padding: 8px;
  }
  .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a span, .layout-wrapper.layout-slim .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button span {
    display: none !important;
  }
  .layout-wrapper.layout-slim .layout-main {
    margin-left: 5.857rem;
  }
  .layout-wrapper.layout-slim .layout-main .layout-topbar {
    display: none;
  }
}
.layout-inline-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0 none;
  padding-bottom: 1.5rem;
}
.layout-inline-menu.layout-inline-menu-active .layout-inline-menu-icon {
  transform: rotate(-180deg);
}
.layout-inline-menu .layout-inline-menu-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  padding: 2rem 2rem 1rem 2rem;
  color: #44486D;
}
.layout-inline-menu .layout-inline-menu-action img {
  border-radius: 22px;
  border: 2px solid transparent;
}
.layout-inline-menu .layout-inline-menu-action .layout-inline-menu-text {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  margin-left: 7px;
}
.layout-inline-menu .layout-inline-menu-action .layout-inline-menu-icon {
  margin-left: auto;
}
.layout-inline-menu .layout-inline-menu-action-panel {
  padding: 0 1.5rem;
}
.layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 0.2rem;
}
.layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:last-child {
  margin-bottom: 0.5rem;
}
.layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a, .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem 1rem;
  border-left: 8px solid transparent;
  border-radius: 8px;
  color: #44486D;
}
.layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a i, .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item button i {
  margin-right: 0.75rem;
}
.layout-inline-menu .layout-inline-menu-action-panel.layout-inline-menu-action-panel-enter-from, .layout-inline-menu .layout-inline-menu-action-panel.layout-inline-menu-action-panel-leave-to {
  max-height: 0;
}
.layout-inline-menu .layout-inline-menu-action-panel.layout-inline-menu-action-panel-enter-to, .layout-inline-menu .layout-inline-menu-action-panel.layout-inline-menu-action-panel-leave-from {
  max-height: 1000px;
}
.layout-inline-menu .layout-inline-menu-action-panel.layout-inline-menu-action-panel-leave-active {
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.86, 0, 0.07, 1);
}
.layout-inline-menu .layout-inline-menu-action-panel.layout-inline-menu-action-panel-enter-active {
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}

.layout-footer {
  height: 4rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-footer .footer-logo-container {
  display: flex;
  align-items: center;
}
.layout-footer .footer-logo-container img {
  width: 2rem;
  height: 2rem;
}
.layout-footer .footer-logo-container .app-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-left: 0.5rem;
}
.layout-footer .copyright {
  font-size: 0.875rem;
  color: #676B89;
}

.widget-overview-box {
  height: 6rem;
  border-radius: 12px;
  padding: 14px 12px;
  position: relative;
}
.widget-overview-box img {
  position: absolute;
  bottom: 14px;
  right: 12px;
}
.widget-overview-box .overview-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}
.widget-overview-box .overview-badge {
  height: 32px;
  width: 70px;
  border-radius: 6px;
  padding: 0.5em;
  margin-top: 0.5em;
  margin-right: 12px;
}
.widget-overview-box .overview-badge i {
  width: 24px;
}
.widget-overview-box .overview-badge span {
  font-size: 14px;
  line-height: 18px;
}
.widget-overview-box .overview-text {
  font-size: 30px;
  line-height: 35px;
}
.widget-overview-box.widget-overview-box-1 .overview-badge {
  background-color: #FC6161;
  box-shadow: 0px 6px 20px rgba(252, 97, 97, 0.3);
}
.widget-overview-box.widget-overview-box-2 .overview-badge {
  margin-right: 12px;
  background-color: #0BD18A;
  box-shadow: 0px 6px 20px rgba(11, 209, 138, 0.3);
}
.widget-overview-box.widget-overview-box-3 .overview-badge {
  background-color: #00D0DE;
  box-shadow: 0px 6px 20px rgba(0, 208, 222, 0.3);
}

.widget-visitor-graph .card-header {
  line-height: 24px;
}
.widget-visitor-graph .card-header .actions span {
  display: inline-flex;
  align-items: center;
}
.widget-visitor-graph .card-header .actions span:first-child {
  margin-right: 25px;
}
.widget-visitor-graph .card-header .actions span i {
  margin-left: 0.5rem;
}
.widget-visitor-graph .graph-content {
  margin-top: 1.5rem;
}
.widget-visitor-graph .graph-content h6 {
  margin-top: 1rem;
}
.widget-visitor-graph .graph-content p {
  color: #8A8EA6;
}
.widget-visitor-graph .graph h6 {
  margin-top: 1.5rem;
}

.widget-timeline.card {
  padding: 0;
}
.widget-timeline .timeline-header {
  padding: 16px;
}
.widget-timeline .timeline-header p {
  margin: 0;
}
.widget-timeline .timeline-header .header-icons i {
  margin-left: 0.5rem;
}
.widget-timeline .p-timeline {
  padding: 0 16px;
}
.widget-timeline .p-timeline.p-timeline-vertical .p-timeline-event-opposite {
  flex: 0;
  padding: 0;
}
.widget-timeline .p-timeline .p-timeline-event-content p, .widget-timeline .p-timeline .p-timeline-event-content h6 {
  margin: 0;
}
.widget-timeline .p-timeline .p-timeline-event-content span {
  color: #8A8EA6;
  font-size: 11px;
}
.widget-timeline .p-timeline .p-timeline-event-content:last-child {
  margin-bottom: 10px;
}
.widget-timeline .p-timeline .custom-marker {
  border-radius: 50%;
  padding: 0.25rem;
  width: 24px;
  height: 24px;
  text-align: center;
}
.widget-timeline .timeline-footer {
  border-top: 1px solid rgba(68, 72, 109, 0.2);
  padding: 16px;
}
.widget-timeline .timeline-footer a {
  color: #44486D;
}

.widget-country-graph .country-title {
  font-weight: 500;
  line-height: 24px;
}
.widget-country-graph .country-content ul {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  list-style-type: none;
}
.widget-country-graph .country-content ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(68, 72, 109, 0.2);
}
.widget-country-graph .country-content ul li .color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.widget-revenue-graph .card-header {
  line-height: 24px;
}
.widget-revenue-graph .card-header .actions span {
  display: inline-flex;
  align-items: center;
}
.widget-revenue-graph .card-header .actions span i {
  margin-left: 0.5rem;
}

.widget-performance .header {
  line-height: 24px;
  font-weight: 500;
}
.widget-performance .header .subtitle {
  font-size: 12px;
  color: #8A8EA6;
}
.widget-performance .content ul {
  padding: 0;
  outline: 0;
  list-style-type: none;
}
.widget-performance .content ul li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
.widget-performance .content ul li .p-avatar {
  width: 3.571rem;
  height: 3.571rem;
}
.widget-performance .content ul li .p-avatar .p-badge {
  top: 4px;
  right: 4px;
}
.widget-performance .content ul li .person-info {
  margin-left: 0.5rem;
}
.widget-performance .content ul li .person-info .amount {
  font-size: 18px;
  color: #44486D;
}
.widget-performance .content ul li .person-info .name {
  font-size: 12px;
  color: #8A8EA6;
}

.widget-customer-graph .header .title {
  display: flex;
  justify-content: space-between;
  line-height: 24px;
}
.widget-customer-graph .header .title .actions i {
  margin-left: 0.5rem;
}
.widget-customer-graph .header .subtitle {
  font-size: 12px;
  color: #8A8EA6;
}
.widget-customer-graph .content {
  margin-top: 1rem;
}
.widget-customer-graph .content h2 {
  margin-bottom: 0;
}
.widget-customer-graph .content p {
  margin-left: 0.5rem;
  color: #8A8EA6;
  font-size: 12px;
  line-height: 1rem;
}

.widget-target .content h3 {
  margin-top: 1rem;
  margin-bottom: 0;
}
.widget-target .content .rate {
  font-size: 13px;
  line-height: 1rem;
  color: #0BD18A;
}
.widget-target .content .rate i {
  font-size: 12px;
}
.widget-target .content .rate span {
  color: #676B89;
}
.widget-target .values {
  margin-top: 1.5rem;
  min-height: 235px;
  position: relative;
  color: #FC6161;
  display: flex;
  justify-content: space-between;
}
.widget-target .values .item {
  min-height: inherit;
  width: 40px;
}
.widget-target .values .item span {
  position: absolute;
}
.widget-target .values .item span.day {
  bottom: 0;
  color: #676B89;
}
.widget-target .values .item.today span.day {
  color: #44486D;
}
.widget-target .values .item.success span:first-child {
  color: #0BD18A;
}
.widget-target .values .item.success .p-progressbar {
  box-shadow: 0px 0px 10px rgba(11, 209, 138, 0.3);
}
.widget-target .values .item.success .p-progressbar .p-progressbar-value {
  background-color: #0BD18A;
}
.widget-target .values .item .p-progressbar {
  transform: rotate(-90deg);
  top: 115px;
  left: -70px;
  width: 170px;
  background-color: rgba(68, 72, 109, 0.12);
}
.widget-target .values .item .p-progressbar .p-progressbar-value {
  background-color: #FC6161;
  box-shadow: 0px 0px 10px rgba(252, 97, 97, 0.3);
}

.widget-customer-carousel .p-carousel-indicators {
  display: none;
}
.widget-customer-carousel .customer-item-content {
  text-align: center;
}
.widget-customer-carousel .customer-item-content h5 {
  color: #8A8EA6;
}

.login-body {
  display: flex;
  box-sizing: border-box;
  min-height: 100vh;
}
.login-body .login-image {
  height: 100vh;
}
.login-body .login-image img {
  height: 100vh;
}
.login-body .login-panel {
  background-image: url("../../../layout/images/effect-onlight.png");
  background-repeat: no-repeat;
  text-align: center;
  width: 100%;
  padding: 260px 100px 75px 100px;
  box-sizing: border-box;
}
.login-body .login-panel .login-logo {
  width: 45px;
}
.login-body .login-panel .login-appname {
  width: 100px;
  margin-left: 1rem;
}
.login-body .login-panel .form-container input {
  display: block;
  max-width: 320px;
  min-width: 270px;
  margin-bottom: 10px;
}
.login-body .login-panel .form-container a, .login-body .login-panel .form-container button {
  color: #8A8EA6;
  margin-bottom: 20px;
  font-size: 11px;
}
.login-body .login-panel .button-container button {
  display: block;
  max-width: 320px;
  margin-bottom: 32px;
}
.login-body .login-panel .button-container > span {
  display: flex;
  font-size: 11px;
  color: #8A8EA6;
}
.login-body .login-panel .button-container > span button {
  font-size: 11px;
  cursor: pointer;
  margin-left: 0.25rem;
}
.login-body .login-panel .login-footer {
  position: absolute;
  bottom: 75px;
}
.login-body .login-panel .login-footer .login-footer-logo-container {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(68, 72, 109, 0.2);
}
.login-body .login-panel .login-footer .login-footer-logo-container .login-footer-logo {
  width: 22px;
}
.login-body .login-panel .login-footer .login-footer-logo-container .login-footer-appname {
  width: 45px;
  margin-left: 0.5rem;
}
.login-body .login-panel .login-footer span {
  margin-left: 1rem;
  font-size: 11px;
  color: #8A8EA6;
}

@media (max-width: 991px) {
  .login-body .login-image {
    display: none;
  }
  .login-body .login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
  }
}
.loading-wrapper {
  height: 100vh;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.loading-wrapper > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.card .card-header {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .card-subtitle {
  color: #8A8EA6;
  font-size: 0.857rem;
  font-weight: 500;
  margin: -1rem 0 1rem 0;
}

.p-toast.p-toast-top-right, .p-toast.p-toast-top-left, .p-toast.p-toast-top-center {
  top: 70px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

/* Add your customizations of layout here */
* {
  margin: 0;
  padding: 0;
}

.global-tab {
  margin-bottom: 20px;
}

.first-d-crad {
  border: 1px solid #e4e6e9;
  border-radius: 3px;
  padding: 20px;
}

.p-breadcrumb > ul > li.p-breadcrumb-chevron:first-of-type {
  display: none;
}

.p-toolbar {
  padding: 0.571rem 0.571rem;
  border-bottom: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.input-effect-div {
  position: relative;
}

.p-inputtext {
  position: relative;
  background: transparent;
  z-index: 11;
  border: 1px solid rgba(68, 72, 109, 0.17);
}
.p-inputtext:enabled:hover {
  border: 1px solid rgba(68, 72, 109, 0.17);
}
.p-inputtext ~ .focus-bg:before, .p-inputtext ~ .focus-bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  background-color: rgba(68, 72, 109, 0.07);
  transition: 0.3s;
  z-index: 1;
  border-radius: 6px;
}
.p-inputtext ~ .focus-bg:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.p-inputtext:focus ~ .focus-bg:before {
  width: 50%;
  height: 100%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.p-inputtext:focus ~ .focus-bg:after {
  width: 50%;
  height: 100%;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.p-dropdown {
  border: 1px solid rgba(68, 72, 109, 0.17);
  background-color: transparent;
}
.p-dropdown:not(.p-disabled):hover {
  border: 1px solid rgba(68, 72, 109, 0.17);
}

.p-column-filter-menu-button.p-column-filter-menu-button-active {
  color: #fff !important;
}

.p-fileupload .p-fileupload-content {
  padding: 1rem 1rem;
}

.notify-text {
  font-size: 12px;
}

.div-h {
  font-size: 20px;
}

.border-violet {
  border-color: #9785c2 !important;
}

.border-green {
  border-color: #98b433 !important;
}

.border-blue {
  border-color: #5d9ed3 !important;
}

.border-red {
  border-color: #ec8686 !important;
}

.border-yellow {
  border-color: #fbc02d !important;
}

.border-purple {
  border-color: #cb7cc0 !important;
}

.border-aqua {
  border-color: #64c3d1 !important;
}

.border-brown {
  border-color: #c2b89d !important;
}

.p-multiselect:not(.p-disabled):hover {
  border-color: rgba(68, 72, 109, 0.17);
}

.multiselect-custom {
  border: 1px solid rgba(68, 72, 109, 0.17);
  background: #fff;
}

.notifiction-icon {
  cursor: pointer;
  margin-top: 5px;
}
.notifiction-icon i {
  color: #cfcfcf;
  font-size: 18px;
  cursor: pointer;
}
.notifiction-icon ul {
  position: absolute;
  right: 10%;
  min-width: 12rem;
  animation-duration: 0.5s;
  list-style-type: none;
  margin: 0;
  z-index: 1;
  padding: 8px 0px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.12) !important;
  top: 40px;
  max-height: 300px;
  height: auto;
  width: 350px;
  overflow-y: scroll;
  border-radius: 4px;
}
.notifiction-icon ul li {
  padding: 8px 16px;
}
.notifiction-icon ul li i {
  color: #000;
  font-size: 16px;
}
.notifiction-icon ul .empty {
  height: auto;
}

.college-name-div {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: start;
}

.p-button-custom-tooltip {
  background-color: transparent;
  color: #44486D;
  border: none;
  box-shadow: none !important;
  padding: 0;
}
.p-button-custom-tooltip:enabled:hover {
  background-color: transparent;
  color: #44486D;
  border: none;
  box-shadow: none !important;
}

.team-s-e {
  font-size: 13px;
}

.p-invalid-txt {
  display: flex;
  color: #FC6161;
  font-size: 14px;
}

.p-calendar .p-inputtext {
  width: 100% !important;
  flex: 1 0.5 auto !important;
}
.p-calendar .p-button.p-button-icon-only {
  width: 3rem;
}

.p-invalid .ql-toolbar.ql-snow,
.p-invalid .p-editor-content.ql-snow,
.p-invalid .p-fileupload-buttonbar,
.p-invalid .p-fileupload-content {
  border: 1px solid #FC6161;
}

.p-datepicker {
  background: #fff !important;
}

.p-editor-container .p-editor-content {
  height: 220px;
}

.p-badge {
  font-size: 0.8rem;
}

.p-avatar {
  min-width: 2rem;
}

.delete-dialog-note {
  color: #ff3131;
  font-size: 16px;
}

.delete-triangle {
  font-size: 2rem;
  color: #ff3131;
}

.custom-tooltip-emp {
  background-color: #4b5563;
  z-index: 11;
  color: #fff;
  text-align: center;
}
.custom-tooltip-emp .tooltip-text {
  margin: 0 10px;
}

.p-input-icon-right > i:last-of-type {
  z-index: 1111111 !important;
}

.recrive-pay-card {
  border: 1px solid #ebeaf2;
  padding: 0;
}
.recrive-pay-card .card-header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px;
  background-color: #f9f9fb;
  border-bottom: 1px solid #ebeaf2;
}
.recrive-pay-card .recrive-pay-content .bills-header {
  padding: 16px;
  border-bottom: 1px solid #ebeaf2;
}
.recrive-pay-card .recrive-pay-content .bills-header .payable-bar .p-progressbar-value {
  background: #ffb830;
}
.recrive-pay-card .recrive-pay-content .bills-header .p-progressbar-label {
  display: none;
}
.recrive-pay-card .recrive-pay-content .t-amt {
  padding: 16px;
  display: flex;
}
.recrive-pay-card .recrive-pay-content .t-amt .right-div {
  border-left: 1px solid #ebeaf2;
}
.recrive-pay-card .recrive-pay-content .t-amt .right-div .unpaid-amt-text {
  color: #f76831;
  text-transform: uppercase;
}
.recrive-pay-card .recrive-pay-content .t-amt .paid-amt-text {
  color: #408dfb;
  text-transform: uppercase;
}

.new-overview-boxes .widget-overview-box {
  max-height: 175px;
  height: auto;
}

.widget-overview-box.total-count-card {
  box-shadow: 1px 2px 1px 2px #d8dde6;
}
.widget-overview-box img {
  position: relative;
  bottom: 0;
  right: 0;
}
.widget-overview-box .overview-text {
  font-size: 22px;
}
.widget-overview-box .overview-text-h {
  font-size: 16px;
  color: #000;
}
.widget-overview-box .overview-text-h.upcoming-holidays {
  font-weight: 600;
  font-size: 14px;
}
.widget-overview-box .overview-text-h.inner-holiday-text {
  font-size: 14px;
}
.widget-overview-box .overview-title {
  font-size: 14px;
}
.widget-overview-box .holiday-name {
  font-size: 13px;
  color: #000;
}
.widget-overview-box .holidaye-date {
  font-size: 12px;
}
.widget-overview-box .remote-div img {
  position: relative;
  width: 100px;
  bottom: auto;
  right: auto;
}
.widget-overview-box.dashboard-leave-card {
  margin-top: 24px;
  max-height: 200px;
  height: auto;
  overflow: hidden;
  overflow-y: scroll;
}
.widget-overview-box.dashboard-leave-card::-webkit-scrollbar {
  display: none;
}
.widget-overview-box.dashboard-leave-card .overview-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 83px;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div .emp-name {
  font-size: 12px;
  text-align: center;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div .p-avatar.p-avatar-image {
  position: relative;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div .p-avatar.p-avatar-image img {
  position: initial;
}

.widget-table .overview-text-h,
.widget-revenue-graph .overview-text-h,
.widget-performance .overview-text-h {
  color: #000;
}

.p-dialog-content {
  padding: 20px !important;
  flex-grow: 1;
}

.role-management .role-checkbox {
  text-transform: capitalize;
}
.role-management .role-table {
  border: 1px solid rgba(68, 72, 109, 0.168627451);
  padding: 0;
}
.role-management .role-table .inner-row {
  border-bottom: 1px solid rgba(68, 72, 109, 0.168627451);
  padding: 0;
}
.role-management .role-table .inner-row:last-child {
  border-bottom: none;
}
.role-management .role-table .inner-row .action-r {
  padding: 0;
  margin: 0;
}
.role-management .role-table .left-menu {
  border-right: 1px solid rgba(68, 72, 109, 0.168627451);
  display: flex;
  align-items: center;
}
.role-management .role-table .role-items {
  border-right: 1px solid rgba(68, 72, 109, 0.168627451);
}
.role-management .role-table .role-items.check-all-new {
  border-top: 1px solid rgba(68, 72, 109, 0.168627451);
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item {
  text-transform: capitalize;
}

.user-management-toolbar {
  border-bottom: 1px solid rgba(68, 72, 109, 0.17);
}

.p-dropdown-panel {
  background-color: #fff;
}

.p-dropdown.new-options .p-dropdown-items-wrapper ul li .p-dropdown-item {
  background-color: #007bff !important;
}
.p-dropdown.new-options .p-dropdown-items-wrapper ul li:last-child.p-dropdown-item {
  background-color: #007bff !important;
}

.total-card {
  background-color: #f9f9fb;
  margin-left: 23px;
  width: 40% !important;
  margin-right: 6%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.total-card.invoice {
  margin-right: 0%;
}

.discount-input {
  background: #fff;
  border-right: none;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.discount-drp {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.discount-drp .p-dropdown-trigger {
  width: 1.5rem;
}
.discount-drp .p-dropdown-trigger .p-dropdown-trigger-icon {
  font-size: 12px;
}

.top-p-avatar img {
  border: 2px solid;
}

.login-body {
  justify-content: center;
  align-items: center;
}
.login-body .login-panel {
  padding: 0px;
  min-height: 70vh;
  background-image: none;
  background: #ffffff;
  width: 30%;
  margin: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.login-body .login-panel .logo-container {
  padding: 20px;
}
.login-body .login-panel .logo-container .login-logo {
  width: 185px;
  margin-bottom: 20px;
}
.login-body .login-panel .button-container button {
  min-width: 270px;
  margin-top: 20px;
  max-width: 100%;
}

.p-toggleable-content-enter-active {
  height: auto;
}

.p-toggleable-content-exit-active {
  height: 0;
}

.p-toggleable-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.layout-wrapper.layout-slim .layout-menu-wrapper {
  overflow: visible;
  z-index: 999;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  display: flex;
  align-items: center;
  background: #273143;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .menu-logo {
  padding: 0px 0px 0px 0px;
  min-height: 4em;
  width: 100%;
  background-color: #273143;
  align-items: center;
  justify-content: center;
  border-right: 1px solid;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container {
  overflow: auto;
  flex: 1 1;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu {
  overflow: unset;
  padding: 0px;
  margin: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li {
  position: unset;
  padding: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a {
  background-color: #394253;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem ul li a i {
  font-size: 14px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 12px 8px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: #394253 !important;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover i {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover span {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: #a2a9b4;
  font-size: 18px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a.active-route {
  background-color: #394253;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a.active-route i {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a.active-route span {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a span {
  display: block;
  font-size: 10px;
  color: #a2a9b4;
  margin-top: 8px;
  font-weight: 700;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-text {
  margin-left: 0px;
  text-align: center;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > ul {
  display: block;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem:first-child {
  margin-top: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul {
  position: absolute;
  left: 5rem;
  top: 0;
  min-width: 15rem;
  background: #394253;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  max-height: 20rem;
  overflow: auto;
  z-index: 999;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a {
  min-height: auto;
  align-items: start;
  padding: 6px 0px;
  color: #a2a9b4;
  font-weight: 600;
  font-size: 13px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a:hover {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a i .layout-menuitem-icon {
  display: none;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a span {
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
  text-align: start;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a span.layout-menuitem-text {
  text-align: start;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu ul {
  display: none;
}
.layout-wrapper .layout-topbar {
  position: fixed;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #273143;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.layout-wrapper .layout-topbar .layout-topbar-left {
  display: block;
  margin-left: 7.587rem;
}
.layout-wrapper .layout-topbar .layout-topbar-left .product-name {
  color: #fff;
}
.layout-wrapper .layout-topbar .layout-topbar-right {
  display: block;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items {
  justify-content: end;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul {
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12), 0 4px 4px 0 rgba(0, 0, 0, 0.24);
  top: 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 8px 0px;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul button {
  padding: 0 10px;
  margin: 0;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul button:hover {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button {
  width: 100%;
}
.layout-wrapper .layout-main .layout-main-content {
  padding-top: 60px;
}

.status {
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0.25em 0.5rem;
  text-transform: uppercase;
  max-width: 80px;
  margin-top: 0px;
  text-align: center;
}

.status-inactive {
  background: #ffcdd2;
  color: #c63737;
}

.status-active {
  background: #c8e6c9;
  color: #256029;
}

.imageupload .p-button.p-button-icon-only {
  padding: 7px !important;
}

.main-img-box {
  max-width: 50px;
  max-height: 50px;
  width: 50px;
  height: 50px;
}
.main-img-box img {
  width: 100%;
  height: 100%;
}

.expanded-table .p-datatable {
  border: 1px solid rgba(68, 72, 109, 0.17);
}

.card {
  position: relative;
}
.card .card-footer {
  display: flex;
  justify-content: end;
  width: 100%;
}
.card .card-footer .button-group {
  display: flex;
  padding: 10px;
}
.card .card-footer .button-group .p-button {
  min-width: 100px;
  padding: 10px;
}

.upper-layer {
  z-index: 1100;
  min-height: 400px;
  overflow: hidden;
  opacity: 0.8;
  margin: auto;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(214, 211, 211);
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upper-layer img {
  height: 75px;
  width: 75px;
}

.badgeLeave {
  background: #cb7cc0;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.badgeWeekLeave {
  background: #7c89cb;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.badgeOther {
  background: #c2b89d;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.custom-datepicker {
  background-color: #fff;
  border: 1px solid #d8dde6;
  padding: 10px;
  color: #000;
  cursor: pointer;
}

.selected-option-btn {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12), 0 4px 4px 0 rgba(0, 0, 0, 0.24);
  padding: 10px 10px;
  z-index: 11111;
  inset: 100% 0px auto auto;
  width: 225px;
}
.selected-option-btn button {
  background-color: #fff;
  border: 0;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

.general-tab {
  margin-right: -30px;
  margin-left: -30px;
  margin-top: -3px;
  background-color: #fff;
  box-shadow: 3px 0 6px 0 #d8dde6;
  border-bottom: 1px solid #dee2e6;
  border-color: #e4e6e9;
  position: relative;
}
.general-tab .p-tabmenu-nav {
  border: none;
  padding: 0 20px;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem {
  margin-right: 1rem;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
  color: #333;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link::after {
  left: 40%;
  opacity: 1;
  border-bottom-color: #2986ce;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
  padding: 13px 10px;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid;
  border-left: 7px solid transparent;
  opacity: 0;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-text {
  text-transform: uppercase;
  font-size: 12px;
}
.general-tab.inner-tab {
  box-shadow: none;
  margin-top: 0;
  background-color: #fefefe;
  position: unset;
  margin-bottom: 16px;
}
.general-tab.inner-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight {
  border-bottom: 2px solid #333;
}
.general-tab.inner-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
  border-color: #333;
}
.general-tab.inner-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link::after {
  display: none;
}
.general-tab.inner-tab.datatable-tab {
  margin-right: 0;
  margin-left: 0;
  border: none;
}
.general-tab.inner-tab.datatable-tab .p-tabmenu-nav {
  padding: 0;
  border-bottom: 1px solid rgba(68, 72, 109, 0.17);
}
.general-tab.inner-tab.cnf-invoice-tab {
  padding: 3px 20px;
  border-bottom: none;
}
.general-tab.inner-tab.cnf-invoice-tab .p-tabview-nav {
  border: none;
}
.general-tab.inner-tab.cnf-invoice-tab .p-tabview-nav li.p-highlight .p-tabview-nav-link {
  color: #333;
}
.general-tab.inner-tab.cnf-invoice-tab .p-tabview-panels {
  padding: 0;
}

.layout-footer .footer-logo {
  vertical-align: middle;
}
.layout-footer .white-txt {
  color: #ffffff;
}
.layout-footer .black-txt {
  color: #44486D;
}

.tool-tip {
  color: #fff;
  border-radius: 12px;
  margin: 20px !important;
}

.address-cell {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-datatable-emptymessage td {
  text-align: center !important;
  padding: 20px 0px !important;
}

.editImage .edit-img-box {
  width: 100px;
  height: 100px;
}
.editImage .edit-img-box img {
  width: 70%;
  height: 70%;
}

.view-img-box {
  width: 120px;
  height: 120px;
}
.view-img-box img {
  width: 100%;
  height: 100%;
}

.p-datatable {
  overflow: auto !important;
}
.p-datatable .p-datatable-thead tr {
  background-color: rgba(68, 72, 109, 0.07);
}
.p-datatable .p-datatable-thead tr th {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.p-datatable .p-datatable-tbody tr td {
  font-size: 12px;
  font-weight: 500;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions .p-button.p-button-icon-only {
  width: 2rem;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions .p-button.p-button-icon-only.p-button-rounded {
  height: 2rem;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions .p-button .p-button-icon {
  font-size: 12px;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody tr {
  border-bottom: 1px solid rgba(68, 72, 109, 0.17);
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-thead .p-column-header-content .p-sortable-column-icon {
  font-size: 12px;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-thead .p-column-header-content .p-column-filter .pi-filter-icon {
  font-size: 12px;
}
.p-datatable.p-datatable-striped .p-datatable-tbody .p-row-odd {
  background: #f8f8fa !important;
}
.p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover {
  background: #f9fafb;
}
.p-datatable .p-sortable-column {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover {
  color: #374151;
}
.p-datatable .p-datatable-tfoot tr td {
  color: #333;
  font-weight: 600;
}

.fas {
  color: #676B89;
}

i {
  color: #676B89;
}

.layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: #676B89;
}

@media screen and (max-width: 960px) {
  .crud-demo .p-datatable {
    overflow: auto !important;
  }
  .crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tbody > tr > td {
    display: revert !important;
    width: auto !important;
  }
  .crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tbody > tr > td > .p-column-title {
    display: none !important;
  }
}
.attendence .p-toolbar {
  border-bottom: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.crud-demo .p-datatable .p-datatable-wrapper .p-datatable-thead > tr > th {
  display: revert !important;
  padding: 0.5rem;
}
.crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tfoot > tr > td {
  display: revert !important;
}
.crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tbody > tr > td {
  width: auto !important;
  padding: 0.5rem;
}
.crud-demo .upper-card-area {
  display: flex;
  gap: 20px;
}
.crud-demo .card-column .div-h {
  color: #000;
  font-weight: 500;
}
.crud-demo .card-column .inner-attendence-card {
  background-color: #f3f3f3;
  border: 1px solid #e4e6e9 !important;
  min-height: 143px;
  border-radius: 3px;
}
.crud-demo .card-column .inner-attendence-card.second {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.crud-demo .card-column .inner-attendence-card.second .day-name {
  display: flex;
  gap: 8px;
}
.crud-demo .card-column .inner-attendence-card.second .day-name .p-badge {
  font-size: 10px;
  background-color: transparent;
  border: 1px solid rgba(68, 72, 109, 0.17);
  color: #44486D;
}
.crud-demo .card-column .inner-attendence-card.second .day-name .p-badge.active-b {
  background-color: #64c3d1;
  color: #fff;
  border: 1px solid #64c3d1;
}
.crud-demo .card-column .inner-attendence-card.second .day-name .attendence-icon i {
  font-size: 16px;
}
.crud-demo .card-column .inner-attendence-card.second .day-progress .today {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}
.crud-demo .card-column .inner-attendence-card.second .day-progress .duration {
  font-size: 10px;
  margin-top: 8px;
}
.crud-demo .card-column .inner-attendence-card.second .day-progress .p-progressbar-determinate .p-progressbar-label {
  display: none;
}
.crud-demo .card-column .inner-attendence-card .p-calender {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.crud-demo .card-column .inner-attendence-card .p-calender .p-datepicker {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.crud-demo .card-column .inner-attendence-card .p-datepicker-inline {
  overflow-x: visible !important;
}
.crud-demo .card-column .inner-attendence-card .p-datepicker-inline.p-datepicker-multiple-month .p-datepicker-group-container {
  position: relative;
  z-index: 111;
  filter: drop-shadow(2px 4px 6px #c9c7c7);
  -webkit-filter: drop-shadow(2px 4px 6px #c9c7c7);
}
.crud-demo .card-column .inner-attendence-card .p-dropdown {
  background: transparent;
}
.crud-demo .card-column .inner-attendence-card .p-datepicker-group {
  background-color: #fff;
  padding: 10px;
}
.crud-demo .card-column .inner-attendence-card .card-t-label {
  color: #777;
  font-size: 12px;
  text-transform: uppercase;
}
.crud-demo .card-column .inner-attendence-card .card-t-label.leave {
  font-size: 12px;
}
.crud-demo .card-column .inner-attendence-card .card-t-header .c-secondary-h {
  font-size: 18px;
  color: #222222;
}
.crud-demo .card-column .inner-attendence-card .card-t-header .icons-u {
  background-color: #387cf7;
  padding: 5px 6px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
}
.crud-demo .card-column .inner-attendence-card .card-t-header .icons-u i {
  color: #ffffff;
}
.crud-demo .card-column .inner-attendence-card .clock-div {
  margin-top: 7px;
}
.crud-demo .card-column .inner-attendence-card .clock-div .live-clock {
  border: 1px solid rgba(68, 72, 109, 0.17);
  padding: 6px;
  font-size: 16px;
}
.crud-demo .card-column .inner-attendence-card .clock-div .today-date {
  margin-top: 14px;
  font-size: 12px;
}
.crud-demo .card-column .inner-attendence-card .right-option {
  margin-left: 40px;
}
.crud-demo .card-column .inner-attendence-card .right-option p {
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #387cf7;
  margin-bottom: 0.3rem;
}

.profile-page .profile-card {
  border: 1px solid #e4e6e9;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 0px;
}
.profile-page .profile-card .p-highlight {
  background-color: #387cf7;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.profile-page .profile-card .p-highlight .name-p {
  color: #ffffff;
  font-size: 50px;
}
.profile-page .profile-card .p-other-info {
  width: 100%;
}
.profile-page .profile-card .p-other-info .full-n-p {
  font-size: 24px;
}
.profile-page .profile-card .p-other-info .personal-info {
  border-bottom: 1px solid transparent;
  padding: 16px 0px;
}

.profile-tab .p-tabview-nav {
  border: 0px;
  background-color: #ffffff;
  box-shadow: 3px 0 6px 0 #d8dde6;
  border: 1px solid #e4e6e9;
  border-top: 0;
  padding: 0px 16px;
}
.profile-tab .p-tabview-nav li.p-highlight .p-tabview-nav-link {
  border: none;
}
.profile-tab .p-tabview-nav li .p-tabview-nav-link {
  padding: 1rem 0.429rem;
}
.profile-tab .p-tabview-nav .p-tabmenuitem .p-menuitem-link {
  border: 0px;
  padding: 1rem 0.429rem;
}

.profile-leave-page .leave-balance {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.profile-leave-page .profile-d-card {
  border: 1px solid #e4e6e9;
  border-radius: 3px;
  min-height: 350px;
  padding: 0px;
}
.profile-leave-page .profile-d-card.document-card {
  min-height: auto;
}
.profile-leave-page .profile-card-title {
  padding: 16px;
  margin-bottom: 12px;
}
.profile-leave-page .profile-card-title:first-child {
  border-bottom: 1px solid #e4e6e9;
}
.profile-leave-page .profile-leave-data {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-leave-page .employee-leave {
  border-top: 1px solid #e4e6e9;
  flex-wrap: wrap;
}
.profile-leave-page .employee-leave .inner-data {
  border-right: 1px solid #e4e6e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
.profile-leave-page .employee-leave .inner-data h6 {
  font-size: 16px;
  margin-top: 6px;
}
.profile-leave-page .employee-leave .inner-data label {
  color: #777777;
  font-size: 12px;
}
.profile-leave-page .employee-leave .inner-data:last-child {
  border-right: 0;
}
.profile-leave-page.pending-leave-data .card {
  margin-bottom: 0px;
}
.profile-leave-page.pending-leave-data .profile-d-card {
  min-height: auto;
  padding: 0px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.profile-leave-page.pending-leave-data .profile-d-card .pending-leave {
  padding: 20px;
  border-bottom: 1px solid #e4e6e9;
}
.profile-leave-page.pending-leave-data .profile-d-card .pending-leave:last-child {
  border-bottom: 0;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data h6 {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 400;
  color: #000;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data label {
  color: #777777;
  font-size: 12px;
  text-transform: uppercase;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data.icon-div {
  display: flex;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data.icon-div .clock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border: 1.5px solid #387cf7;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data.icon-div .clock-icon i {
  color: #387cf7;
  font-size: 16px;
}
.profile-leave-page.pending-leave-data .profile-d-card.request-leave-div {
  min-height: 81px;
  padding: 20px;
}
.profile-leave-page.leave-stat .profile-d-card {
  min-height: auto;
  padding: 16px;
}
.profile-leave-page.about-page .profile-d-card {
  min-height: 238px;
  padding-bottom: 16px;
}
.profile-leave-page.about-page .profile-d-card.document-card {
  min-height: auto;
}
.profile-leave-page.about-page .employee-leave {
  border-top: unset;
}
.profile-leave-page.about-page .employee-leave .inner-data {
  border-right: unset;
  align-items: start;
  padding: 8px 16px;
}

.assign-dialog .p-dialog-footer {
  border: 1px solid rgba(68, 72, 109, 0.168627451);
  padding-top: 10px;
}

.p-dialog .p-dialog-header {
  background: #fff;
  border-bottom: 1px solid rgba(68, 72, 109, 0.168627451);
}
.p-dialog .p-dialog-content {
  background: #fff;
}
.p-dialog .p-dialog-footer {
  background: #fff;
}
.p-dialog.all-sidebar {
  height: 100%;
  max-height: 100%;
  margin: 0 !important;
}
.p-dialog.all-sidebar .p-dialog-header {
  border-top-right-radius: 0px;
  border-top-left-radius: 5px;
  border-bottom: 1px solid #8A8EA6;
  padding: 1rem 1.714rem;
  color: #000;
}
.p-dialog.all-sidebar .p-dialog-footer {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 5px;
}

select {
  border: 1px solid rgba(68, 72, 109, 0.17);
  background: transparent;
  padding: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.custom-range-label option:nth-child(4) {
  display: none;
}

.kra-main-tabs {
  padding: 16px;
}
.kra-main-tabs .kra-left-card {
  padding-right: 30px;
}
.kra-main-tabs .kra-right-card {
  margin-top: 40px;
  padding-left: 40px;
  border-left: 1px solid #e4e6e9;
}
.kra-main-tabs .kra-right-card .kra-status .status-green {
  background-color: #86c06a;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-orange {
  background-color: #fbc02d;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-red {
  background-color: #fa5f5f;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-gray {
  background-color: #b4bac5;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-blue {
  background-color: #5d9ed3;
}
.kra-main-tabs .kra-right-card .kra-status .status-name {
  font-size: 13px;
  color: #222222;
  font-weight: 400;
}
.kra-main-tabs .kra-right-card .kra-status .status-name span {
  font-weight: 600;
}
.kra-main-tabs .kra-right-card .kra-status .count-kras {
  font-size: 12px;
}

.p-multiselect-panel {
  background-color: #fff;
}

/* Container styling */
.search-bar {
  display: inline-flex;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 5px 13px;
  width: 40px;
  /* Initial width */
  overflow: hidden;
  transition: width 0.4s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
}
.search-bar .p-inputtext:enabled:hover {
  border: unset;
}

/* Expand the container on hover or focus */
.search-bar:hover,
.search-bar:focus-within {
  width: 200px;
  /* Expanded width */
}

/* Icon styling */
.search-bar i {
  color: #333;
  margin-right: 5px;
  transition: color 0.3s ease;
}

/* Optional: Change icon color on hover */
.search-bar:hover i {
  color: #a855f7;
  /* Light blue icon color */
}

/* Input styling */
.search-input {
  border: none;
  outline: none;
  background: transparent;
  width: 0;
  opacity: 0;
  font-size: 14px;
  transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Make the input visible when expanded */
.search-bar:hover .search-input,
.search-bar:focus-within .search-input {
  width: 100%;
  opacity: 1;
}

.upload-box {
  display: flex;
  align-items: center;
  border: 1px dashed rgba(68, 72, 109, 0.3);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  color: #44486D;
  font-size: 1rem;
}
.upload-box input.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-preview {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  min-width: 60%;
  width: auto;
}
.file-preview .file-info {
  flex-grow: 1;
}
.file-preview .file-info .file-name {
  display: block;
  font-weight: bold;
  color: #387cf7;
}
.file-preview .file-info .file-details {
  font-size: 0.85rem;
  color: #666;
}
.file-preview .file-delete {
  color: #d9534f;
  cursor: pointer;
  font-size: 1.2rem;
}
.file-preview .file-delete:hover {
  color: #c9302c;
}

.doc-viewer-container {
  margin-top: 20px;
}
.doc-viewer-container iframe {
  border: none;
  width: 100%;
  height: 500px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.details-grid .details-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.details-grid .details-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.details-grid .details-card .card-content p {
  margin-bottom: 0.75rem;
}
.details-grid .details-card .card-content p .label {
  font-weight: bold;
  color: #555;
  margin-right: 0.5rem;
}
.details-grid .details-card .card-content .document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details-grid .details-card .card-content .document-row .action-button {
  display: flex;
  align-items: center;
  color: #007bff;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}
.details-grid .details-card .card-content .document-row .action-button:hover {
  text-decoration: underline;
}
.details-grid .details-card .card-content .document-row .action-button i {
  margin-right: 0.25rem;
  font-size: 1rem;
}
.details-grid .profile-picture {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details-grid .profile-picture .picture-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.details-grid .profile-picture .picture-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.details-grid .profile-picture .picture-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: bold;
}

.attendence-summary .attendance-stat .attendance-stat-card {
  background-color: #fff;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  min-height: 92px;
}
.attendence-summary .attendance-stat .attendance-stat-card .attendance-data {
  border-left: 3px solid;
  padding-left: 16px;
}
.attendence-summary .attendance-stat .attendance-stat-card .attendance-data p {
  color: #333;
  font-weight: 500;
}
.attendence-summary .attendance-stat .attendance-stat-card .attendance-data h3 {
  color: #333;
  font-weight: 600;
}
.attendence-summary .common-past-data {
  padding-top: 20px;
}
.attendence-summary .common-past-data .header-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.attendence-summary .common-past-data .header-data h4 {
  font-size: 16px;
  color: #333;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav {
  border-bottom: transparent;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li.p-tabview-selected.p-highlight .past-dates-header {
  border-color: #2986ce;
  background-color: #d6e8f7;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header {
  background-color: #fff;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data h6 {
  font-size: 28px;
  color: #222222;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data .inner-icon-div {
  background-color: rgba(152, 180, 51, 0.2);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data .inner-icon-div i {
  color: #86c06a;
  font-size: 10px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present {
  margin-top: 12px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present .inner-icon-div {
  background-color: rgba(203, 124, 192, 0.2);
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present .inner-icon-div i {
  color: #6f42c1;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present .emp {
  font-size: 14px;
  color: #222222;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present p {
  font-size: 11px;
  margin-left: 32px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels {
  padding-top: 2rem;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card {
  padding: 0;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 16px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h h6 {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .p-chart {
  padding: 16px;
}
.attendence-summary .common-past-data.analytics {
  padding-top: 0;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header {
  padding-bottom: 20px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header h3 {
  color: #000;
  font-weight: 500;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header .p-dropdown {
  background: #fff;
  border-radius: 0;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header .p-dropdown .p-dropdown-label {
  margin-top: 3px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header .p-dropdown .p-dropdown-label.p-placeholder {
  margin-top: 3px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav {
  background-color: #fff;
  border-bottom: none;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav li {
  padding: 8px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav li:hover .p-tabview-nav-link {
  border-color: transparent;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav .p-tabview-selected.p-highlight {
  background-color: #d6e8f7;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav .p-tabview-selected.p-highlight .p-tabview-nav-link {
  border: none;
  color: #333;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels {
  padding-top: 20px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card {
  padding: 0;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .avg-hours {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .avg-hours .count-hours p {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .avg-hours .count-hours span {
  font-size: 12px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 16px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h h6 {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .p-chart {
  padding: 16px;
}

.custom-table {
  text-align: center;
  width: 40%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #dee2e6;
}
.custom-table thead tr th {
  border-bottom-width: 2px;
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
  padding: 0.75rem;
}
.custom-table tr th {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}
.custom-table tr td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}

.avatar-div .link-name {
  text-decoration: underline;
  color: #2986ce;
}
.avatar-div .link-name .plain-button {
  background: transparent;
  border: none;
  box-shadow: 0px 0px 0px 0px;
  text-decoration: underline;
  color: #2986ce;
  font-size: 12px;
}

.reports .card {
  padding: 0;
  border: 1px solid #ebedf6;
  box-shadow: 0 5px 10px 0 #f1f1fa;
  padding-bottom: 30px;
}
.reports .card .header {
  color: #000;
  padding: 10px 16px;
}
.reports .card .p-datatable-table .p-datatable-thead tr {
  border-top: 1px solid rgba(68, 72, 109, 0.17);
}
.reports .card .p-datatable-table .p-datatable-thead tr th {
  padding: 0.5rem 16px !important;
}
.reports .card .p-datatable-table .p-datatable-tbody tr td {
  padding: 0.5rem 16px !important;
}
.reports .card .p-datatable-table .p-datatable-tbody .p-rowgroup-header .p-rowgroup-header-name span {
  color: #000;
  font-size: 14px;
}
.reports .card .p-datatable-table .p-datatable-tbody .p-rowgroup-header .p-rowgroup-header-name .p-badge {
  color: #fff !important;
}

.amount {
  font-size: 14px;
  font-weight: 500;
}

.area-distribution-table .p-column-filter-menu {
  margin-left: 20px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #949494 transparent;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #949494;
  border-radius: 10px;
  border: 1px solid transparent;
}
*::-webkit-scrollbar-thumb:hover {
  width: thin;
  background-color: transparent;
}

.bg-green-cutome {
  background-color: #69d26e !important;
}

.customer-b-top {
  border-top: 2px solid rgba(68, 72, 109, 0.17);
}

.closing-credit {
  color: red;
}

/* ============================================
   HELICORE LOGIN - FUTURISTIC DESIGN
   ============================================ */
/* Main Container */
.helicore-login-body {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: #000000;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   LEFT SIDE - VISUAL PANEL
   ============================================ */
.helicore-visual-panel {
  display: none;
  width: 50%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .helicore-visual-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.visual-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
}

/* Glowing Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.glow-orb-1 {
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.3);
}

.glow-orb-2 {
  bottom: 33%;
  right: 33%;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.25);
  animation-delay: 1s;
}

.glow-orb-3 {
  top: 50%;
  right: 25%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.2);
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
/* Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
}

/* Logo Showcase */
.logo-showcase {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.logo-visual {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

.logo-visual-2 {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

.logo-glow-ring {
  position: absolute;
  inset: -48px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 3s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  inset: -32px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* Welcome Text */
.welcome-text {
  position: absolute;
  bottom: 64px;
  left: 48px;
  right: 48px;
  z-index: 10;
}

.welcome-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 18px;
  color: #d1d5db;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RIGHT SIDE - LOGIN PANEL
   ============================================ */
.helicore-login-panel {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

@media (min-width: 1024px) {
  .helicore-login-panel {
    width: 50%;
  }
}
.login-panel-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.particle-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: #a855f7;
}

.particle-2 {
  top: 33%;
  right: 33%;
  width: 4px;
  height: 4px;
  background: #3b82f6;
  animation-delay: 0.5s;
}

.particle-3 {
  bottom: 25%;
  left: 33%;
  width: 6px;
  height: 6px;
  background: #06b6d4;
  animation-delay: 1s;
}

.particle-4 {
  top: 66%;
  right: 25%;
  width: 4px;
  height: 4px;
  background: #a855f7;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}
/* Login Form Container */
.login-form-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 10;
}

.form-glow-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 24px;
  filter: blur(60px);
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
}

/* Login Card */
.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .login-card {
    padding: 48px;
  }
}
/* Header */
.login-header {
  text-align: center;
}

.logo-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.login-logo {
  width: 40px;
  height: auto;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.login-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.login-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
  font-weight: 500;
}

/* Form Content */
.form-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Input Groups */
.input-group {
  margin-bottom: 0;
}

.input-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 8px;
  margin-left: 4px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  z-index: 20;
  transition: color 0.3s ease;
}

.input-focused .input-icon {
  color: #a855f7;
}

/* Input Styling */
.helicore-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 14px 16px 14px 44px !important;
  color: #ffffff !important;
  font-size: 14px;
  transition: all 0.3s ease !important;
}

.helicore-input::-moz-placeholder {
  color: #6b7280;
}

.helicore-input::placeholder {
  color: #6b7280;
}

.helicore-input:focus {
  border-color: #a855f7 !important;
  outline: none !important;
}

.helicore-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Password Input */
.helicore-password {
  width: 100%;
  position: relative;
}

.input-wrapper .p-input-icon-right i {
  position: absolute;
  right: 5% !important;
  top: 46% !important;
  font-size: 18px !important;
}

.helicore-password .p-password-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 14px 44px 14px 44px !important;
  color: #ffffff !important;
  font-size: 14px;
  transition: all 0.3s ease !important;
  padding-left: 44px !important;
  padding-right: 44px !important;
}

.helicore-password .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #6b7280;
}

.helicore-password .p-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
  color: #6b7280;
}

.helicore-password .p-password-input::-moz-placeholder {
  color: #6b7280;
}

.helicore-password .p-password-input::placeholder {
  color: #6b7280;
}

.helicore-password .p-password-input:focus {
  border-color: #a855f7 !important;
  outline: none !important;
}

.helicore-password .p-password-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.helicore-password .p-icon {
  color: #6b7280;
  transition: color 0.3s ease;
}

.helicore-password .p-icon:hover {
  color: #a855f7;
}

/* Input Glow Effect */
.input-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 12px;
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* Error Messages */
.error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ef4444 !important;
  font-size: 12px;
  margin-top: 6px;
  margin-left: 4px;
}

.p-invalid {
  border-color: #ef4444 !important;
}

.p-invalid:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3) !important;
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.helicore-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.helicore-checkbox:checked {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-color: transparent;
}

.helicore-checkbox:focus {
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.3);
  outline: none;
}

.checkbox-label {
  color: #9ca3af;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: #d1d5db;
}

.forgot-password-link {
  background: none;
  border: none;
  color: #a855f7;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: #c084fc;
  text-decoration: underline;
}

.forgot-password-link:focus {
  outline: none;
  text-decoration: underline;
}

/* Login Button */
.button-container {
  position: relative;
  margin-top: 8px;
}

.helicore-login-btn {
  width: 100%;
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(76, 64, 143));
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.helicore-login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgb(138, 68, 204), rgb(168, 85, 247), rgb(198, 115, 255));
  transform: scale(1.02);
}

.helicore-login-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.helicore-login-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.helicore-login-btn:focus {
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.5) !important;
  outline: none !important;
}

.button-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(76, 64, 143));
  filter: blur(20px);
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}

/* Footer */
.login-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.support-link {
  background: none;
  border: none;
  color: #a855f7;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #c084fc;
  text-decoration: underline;
}

.support-link:focus {
  outline: none;
  text-decoration: underline;
}

/* PrimeReact Toast Customization */
.p-toast {
  opacity: 0.95 !important;
}

.p-toast .p-toast-message {
  backdrop-filter: blur(10px);
  border-radius: 12px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .login-card {
    padding: 32px 24px;
  }
  .welcome-title {
    font-size: 36px;
  }
  .login-title {
    font-size: 20px;
  }
}
/* Modern Topbar Styles */
.layout-topbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.layout-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-logo {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.topbar-logo:hover {
  transform: scale(1.08);
}

.layout-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Profile Dropdown Styles */
.profile-dropdown-wrapper {
  position: relative;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.profile-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
}

.profile-dropdown-wrapper.active .profile-trigger {
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
}

.profile-avatar {
  width: 30px !important;
  height: 30px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.profile-name {
  font-weight: 500;
  font-size: 0.95rem;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.profile-dropdown-wrapper.active .profile-chevron {
  transform: rotate(180deg);
}

/* Fixed Profile Dropdown */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-info-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-info-role {
  font-size: 0.85rem;
  opacity: 0.8;
}

.profile-dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.5rem 0;
}

.profile-menu-item:hover {
  background: #f3f4f6;
  color: #000000;
}

.profile-menu-item i {
  width: 20px;
  font-size: 1.1rem;
  text-align: center;
}

.logout-item {
  color: #ef4444;
}

.logout-item:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
  .layout-topbar-modern {
    padding: 0 1rem;
  }
  .profile-name {
    display: none;
  }
  .topbar-logo {
    height: 35px;
  }
  .profile-dropdown {
    min-width: 260px;
  }
}
@media (max-width: 480px) {
  .topbar-logo {
    height: 30px;
  }
  .profile-dropdown {
    right: -1rem;
  }
}
/* Compact Sidebar Styles */
.layout-sidebar-compact {
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 86px;
  background: #000000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar Content */
.sidebar-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: visible;
  padding: 0.5rem 0;
}

.sidebar-content::-webkit-scrollbar {
  width: 4px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Menu Styles */
.layout-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.layout-root-menuitem {
  margin-bottom: 0.25rem;
  position: relative;
}

.layout-root-menuitem > a,
.layout-root-menuitem > .p-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 4px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.75rem;
  gap: 0.375rem;
  cursor: pointer;
}

.layout-root-menuitem > a::before,
.layout-root-menuitem > .p-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 70%;
  background: #ffffff;
  transition: transform 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.layout-root-menuitem > a:hover,
.layout-root-menuitem > .p-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.layout-root-menuitem > a.active-route,
.layout-root-menuitem > .p-link.active-route {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.layout-root-menuitem > a.active-route::before,
.layout-root-menuitem > .p-link.active-route::before {
  transform: translateY(-50%) scaleY(1);
}

.layout-menuitem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.active-menuitem > a .layout-submenu-toggler,
.active-menuitem > .p-link .layout-submenu-toggler {
  opacity: 1;
}

/* Sidebar Menu Item */
.layout-menuitem {
  position: relative;
  margin: 0.25rem 0;
}

.layout-menuitem-link {
  display: flex;
  align-items: center;
  padding: 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
  position: relative;
  gap: 0.75rem;
  cursor: pointer;
  overflow: hidden;
}
.layout-menuitem-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.layout-menuitem-link:hover .layout-menuitem-icon {
  color: #a855f7;
  transform: scale(1.1);
}
.layout-menuitem-link.active-route, .layout-menuitem-link.active-menuitem-link {
  background: rgba(239, 68, 68, 0.1);
  color: #ffffff;
}
.layout-menuitem-link.active-route::before, .layout-menuitem-link.active-menuitem-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #a855f7;
  border-radius: 0 4px 4px 0;
}
.layout-menuitem-link.active-route .layout-menuitem-icon, .layout-menuitem-link.active-menuitem-link .layout-menuitem-icon {
  color: #a855f7;
}
.layout-menuitem-link.active-route .layout-submenu-toggler, .layout-menuitem-link.active-menuitem-link .layout-submenu-toggler {
  color: #a855f7;
}

.layout-menuitem-icon {
  font-size: 1.2rem;
  min-width: 17px;
  width: 17px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.layout-menuitem-text {
  flex: 1;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0px;
  text-align: center;
}

.layout-submenu-toggler {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
  margin-left: 0;
  flex-shrink: 0;
  width: 16px;
}
.layout-submenu-toggler.active {
  transform: rotate(0deg);
}

/* Popup Submenu Styles */
.layout-submenu-popup {
  position: fixed;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-width: 240px;
  max-width: 280px;
  z-index: 2000;
  animation: submenuSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin-left: 0.5rem;
}

@keyframes submenuSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
/* Submenu Header */
.submenu-header {
  padding: 1rem 1.25rem 0.75rem;
  background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(68, 173, 239, 0.2);
  margin-bottom: 0.5rem;
}
.submenu-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Submenu Items */
.layout-submenu-item {
  margin: 0;
  padding: 0 0.5rem;
}

.layout-submenu-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  gap: 0.875rem;
  position: relative;
  border-radius: 8px;
  font-weight: 500;
}
.layout-submenu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #a855f7;
  transition: height 0.2s ease;
  border-radius: 0 3px 3px 0;
}
.layout-submenu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding-left: 1rem;
}
.layout-submenu-link:hover::before {
  height: 60%;
}
.layout-submenu-link:hover .submenu-icon {
  color: #a855f7;
  transform: translateX(2px);
}
.layout-submenu-link.active-route {
  background: rgba(68, 119, 239, 0.1);
  color: #ffffff;
  font-weight: 600;
}
.layout-submenu-link.active-route::before {
  height: 70%;
}
.layout-submenu-link.active-route .submenu-icon {
  color: #a855f7;
}

.submenu-icon {
  font-size: 0.875rem;
  min-width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}
.submenu-icon.pi-circle-fill {
  font-size: 0.5rem;
}

/* Last item spacing */
.layout-submenu-item:last-child {
  margin-bottom: 0.5rem;
}

/* Hover state for parent menu item when submenu is open */
.active-menuitem > .layout-menuitem-link {
  background: rgba(239, 68, 68, 0.1);
}

/* Animation for submenu items */
.layout-submenu-popup .layout-submenu-item {
  animation: submenuItemSlideIn 0.3s ease forwards;
  opacity: 0;
}

.layout-submenu-popup .layout-submenu-item:nth-child(2) {
  animation-delay: 0.05s;
}

.layout-submenu-popup .layout-submenu-item:nth-child(3) {
  animation-delay: 0.1s;
}

.layout-submenu-popup .layout-submenu-item:nth-child(4) {
  animation-delay: 0.15s;
}

.layout-submenu-popup .layout-submenu-item:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes submenuItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .layout-submenu-popup {
    min-width: 200px;
  }
}
/* Scrollbar for long submenus */
.layout-submenu-popup {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.layout-submenu-popup::-webkit-scrollbar {
  width: 6px;
}
.layout-submenu-popup::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.layout-submenu-popup::-webkit-scrollbar-thumb {
  background: rgba(239, 68, 68, 0.3);
  border-radius: 10px;
}
.layout-submenu-popup::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 68, 68, 0.5);
}

/* Sidebar Layout Fixes */
.layout-sidebar-compact .layout-menu {
  width: 100%;
}
.layout-sidebar-compact .layout-menuitem {
  width: 100%;
}

/* For narrower sidebars */
@media (max-width: 1200px) {
  .layout-menuitem-link {
    padding: 0.875rem 0.5rem;
    gap: 0.5rem;
  }
  .layout-menuitem-text {
    font-size: 0.875rem;
  }
}
/* Badge Styles */
.menu-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 9px;
  font-size: 0.65rem;
  padding: 0 5px;
}

/* Ripple Effect */
.p-ripple {
  position: relative;
  overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .layout-sidebar-compact {
    transform: translateX(-100%);
  }
  .layout-sidebar-compact.sidebar-active {
    transform: translateX(0);
  }
  /* Backdrop for mobile */
  .layout-sidebar-compact.sidebar-active::after {
    content: "";
    position: fixed;
    top: 70px;
    left: 70px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}
/* Scrollbar for Firefox */
.sidebar-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Hover state enhancement */
.layout-root-menuitem {
  cursor: pointer;
}

/* Active state for parent with open submenu */
.active-menuitem > a,
.active-menuitem > .p-link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Submenu positioning adjustment */
.layout-submenu-popup::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #1a1a1a transparent transparent;
}

/* Tooltip-like effect for menu items (optional) */
.layout-root-menuitem > a::after,
.layout-root-menuitem > .p-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  z-index: 1001;
  pointer-events: none;
}

.layout-root-menuitem > a:hover::after,
.layout-root-menuitem > .p-link:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Smooth transitions */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Profile Dropdown Container */
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.75rem;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Profile Header */
.profile-dropdown-header {
  position: relative;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border-radius: 12px 12px 0 0;
  color: #ffffff;
}

.profile-dropdown-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(135deg, #a855f7 0%, #5335d7 100%);
}

.profile-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-info-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.profile-info-role {
  display: flex;
  align-items: center;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #a855f7 0%, #5335d7 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

/* Avatar Styling Override */
.profile-dropdown .p-avatar {
  background: linear-gradient(135deg, #a855f7 0%, #5335d7 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
}

/* Divider */
.profile-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.5rem 1rem;
  list-style: none;
}

/* Menu Items */
.profile-dropdown li[role=menuitem] {
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}

.profile-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: #d1d5db;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  border-radius: 10px;
}

.profile-menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #a855f7;
  transition: height 0.2s ease;
  border-radius: 0 3px 3px 0;
}

.profile-menu-item:hover {
  background: #2b2730;
  color: #ffffff;
}

.profile-menu-item:hover::before {
  height: 60%;
}

.profile-menu-item:active {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.98);
}

/* Menu Item Icons */
.menu-item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-menu-item:hover .menu-item-icon-wrapper {
  background: rgba(43, 39, 48, 0);
  border-color: rgba(43, 39, 48, 0);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(68, 131, 239, 0.15);
  margin-top: 4px;
}

.menu-item-icon-wrapper i {
  font-size: 1.15rem;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.profile-menu-item:hover .menu-item-icon-wrapper i {
  color: #a855f7;
}

.menu-item-text {
  flex: 1;
  font-weight: 500;
}

.menu-item-arrow {
  font-size: 0.875rem;
  color: #6b7280;
  transition: all 0.2s ease;
  opacity: 0;
}

.profile-menu-item:hover .menu-item-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: #a855f7;
}

/* Logout Item */
.logout-item {
  margin: 0.5rem 0 0.75rem 0;
}

.logout-item .menu-item-icon-wrapper {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.15);
}

.logout-item .menu-item-icon-wrapper i {
  color: #ef4444;
}

.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ffffff;
}

.logout-item:hover .menu-item-icon-wrapper {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.logout-item:hover .menu-item-icon-wrapper i {
  color: #ff5555;
}

.logout-item:hover::before {
  background: #ef4444;
}

/* Remove arrow for logout */
.logout-item .menu-item-arrow {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-dropdown {
    min-width: 280px;
    right: -0.5rem;
  }
  .profile-menu-item {
    padding: 0.75rem;
  }
  .menu-item-icon-wrapper {
    width: 36px;
    height: 36px;
  }
}
/* Loading state animation (optional) */
@keyframes shimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
/* Smooth entrance for each menu item */
.profile-dropdown.show li[role=menuitem] {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.profile-dropdown.show li[role=menuitem]:nth-child(1) {
  animation-delay: 0.05s;
}

.profile-dropdown.show li[role=menuitem]:nth-child(2) {
  animation-delay: 0.1s;
}

.profile-dropdown.show li[role=menuitem]:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ============================================
   HELICORE CUSTOM THEME - High Specificity
   Prefix: .hc- (Helicore Custom)
   ============================================ */
/* Page Container */
.hc-page-container {
  padding: 0 !important;
}

.hc-content-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e5e7eb !important;
  padding: 1rem !important;
}

/* ============================================
   BREADCRUMB STYLING
   ============================================ */
.layout-breadcrumb-container {
  background: transparent !important;
  padding: 1rem 0rem 0.75rem !important;
  margin-bottom: 0 !important;
}

.layout-breadcrumb-left-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.layout-breadcrumb-left-items h4 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* Breadcrumb Component */
.layout-breadcrumb.p-breadcrumb {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.layout-breadcrumb .p-breadcrumb-list {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

.layout-breadcrumb .p-menuitem-link {
  color: #6b7280 !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  transition: color 0.2s !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 6px !important;
}

.layout-breadcrumb .p-menuitem-link:hover {
  color: #a855f7 !important;
  background: rgba(168, 85, 247, 0.05) !important;
}

.layout-breadcrumb .p-menuitem-link .p-menuitem-text {
  color: inherit !important;
}

.layout-breadcrumb .p-menuitem-link .p-menuitem-icon {
  color: #6b7280 !important;
  font-size: 0.875rem !important;
}

.layout-breadcrumb .p-breadcrumb-chevron {
  color: #d1d5db !important;
  font-size: 0.75rem !important;
  margin: 0 0.25rem !important;
}

.layout-breadcrumb .p-menuitem.p-menuitem-active .p-menuitem-link,
.layout-breadcrumb .p-menuitem:last-child .p-menuitem-link {
  color: #111827 !important;
  font-weight: 500 !important;
}

.layout-breadcrumb-left-items .p-button.p-button-secondary {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  width: 2rem !important;
  height: 2rem !important;
  padding: 0 !important;
  border-radius: 8px !important;
  transition: all 0.2s !important;
}

.layout-breadcrumb-left-items .p-button.p-button-secondary:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
  transform: translateX(-2px) !important;
}

/* ============================================
   TOOLBAR STYLING
   ============================================ */
.hc-toolbar.p-toolbar {
  background: transparent !important;
  border: none !important;
  padding: 0 0 1rem 0 !important;
  border-radius: 0 !important;
}

.hc-toolbar-left {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* Search Input */
.hc-search-input.p-input-icon-left {
  width: 280px !important;
}

.hc-search-input.p-input-icon-left > i {
  color: #9ca3af !important;
  left: 0.75rem !important;
}

.hc-search-input.p-input-icon-left > .p-inputtext {
  padding: 0.5rem 0.75rem 0.5rem 2.25rem !important;
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  color: #111827 !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.hc-search-input.p-input-icon-left > .p-inputtext:enabled:hover {
  border-color: #d1d5db !important;
}

.hc-search-input.p-input-icon-left > .p-inputtext:enabled:focus {
  border-color: #a855f7 !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
  background: #ffffff !important;
}

/* ============================================
   BUTTON STYLING
   ============================================ */
.hc-btn-primary.p-button,
.hc-btn-primary.p-button.p-component {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  transition: all 0.2s !important;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25) !important;
}

.hc-btn-primary.p-button:enabled:hover,
.hc-btn-primary.p-button.p-component:enabled:hover {
  background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%) !important;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.35) !important;
  transform: translateY(-1px) !important;
}

.hc-btn-primary.p-button:enabled:active {
  transform: translateY(0) !important;
}

.hc-btn-secondary.p-button,
.hc-btn-secondary.p-button.p-component {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.hc-btn-secondary.p-button:enabled:hover,
.hc-btn-secondary.p-button.p-component:enabled:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
}

.hc-btn-icon.p-button.p-button-rounded.p-button-text,
.hc-btn-icon.p-button.p-component.p-button-rounded.p-button-text {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
  color: #6b7280 !important;
}

.hc-btn-icon.p-button:hover,
.hc-btn-icon.p-button.p-component:hover {
  background: #f3f4f6 !important;
  color: #a855f7 !important;
}

.hc-btn-icon-danger.p-button,
.hc-btn-icon-danger.p-button.p-component {
  color: #ef4444 !important;
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
}

.hc-btn-icon-danger.p-button:hover,
.hc-btn-icon-danger.p-button.p-component:hover {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

/* ============================================
   DATATABLE STYLING
   ============================================ */
.hc-datatable.p-datatable .p-datatable-wrapper {
  font-size: 0.875rem !important;
}

.hc-datatable.p-datatable .p-datatable-header {
  background: transparent !important;
  border: none !important;
  padding: 0 0 1rem 0 !important;
}

/* Table Header */
.hc-datatable.p-datatable .p-datatable-thead > tr > th {
  background: #f9fafb !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.75rem 1rem !important;
  border: none !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.hc-datatable.p-datatable .p-datatable-thead > tr > th:first-child {
  border-radius: 8px 0 0 0 !important;
}

.hc-datatable.p-datatable .p-datatable-thead > tr > th:last-child {
  border-radius: 0 8px 0 0 !important;
}

/* Table Body */
.hc-datatable.p-datatable .p-datatable-tbody > tr {
  background: #ffffff !important;
  color: #374151 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  transition: all 0.2s !important;
}

.hc-datatable.p-datatable .p-datatable-tbody > tr:hover {
  background: #fafafa !important;
}

.hc-datatable.p-datatable .p-datatable-tbody > tr > td {
  padding: 0.75rem 1rem !important;
  border: none !important;
  font-size: 0.875rem !important;
  justify-items: left;
}

/* Override striped rows */
.hc-datatable.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even) {
  background: #ffffff !important;
}

.hc-datatable.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even):hover {
  background: #fafafa !important;
}

/* Remove gridlines visual effect */
.hc-datatable.p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td {
  border-width: 0 0 1px 0 !important;
}

/* Sort Icons */
.hc-datatable.p-datatable .p-sortable-column .p-sortable-column-icon {
  color: #9ca3af !important;
  font-size: 0.875rem !important;
}

.hc-datatable.p-datatable .p-sortable-column:hover .p-sortable-column-icon {
  color: #a855f7 !important;
}

.hc-datatable.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon {
  color: #a855f7 !important;
}

/* Filter Icons */
.hc-datatable.p-datatable .p-column-filter-menu-button {
  color: #9ca3af !important;
  margin-left: 0.5rem !important;
}

.hc-datatable.p-datatable .p-column-filter-menu-button:hover {
  color: #a855f7 !important;
  background: rgba(168, 85, 247, 0.1) !important;
}

/* Paginator */
.hc-datatable.p-datatable .p-paginator {
  background: transparent !important;
  border: none !important;
  padding: 0.75rem 0 0 0 !important;
  color: #6b7280 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-first,
.hc-datatable.p-datatable .p-paginator .p-paginator-prev,
.hc-datatable.p-datatable .p-paginator .p-paginator-next,
.hc-datatable.p-datatable .p-paginator .p-paginator-last {
  color: #6b7280 !important;
  min-width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-first:not(.p-disabled):hover,
.hc-datatable.p-datatable .p-paginator .p-paginator-prev:not(.p-disabled):hover,
.hc-datatable.p-datatable .p-paginator .p-paginator-next:not(.p-disabled):hover,
.hc-datatable.p-datatable .p-paginator .p-paginator-last:not(.p-disabled):hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-pages .p-paginator-page {
  min-width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
  color: #6b7280 !important;
  transition: all 0.2s !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-pages .p-paginator-page:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
  background: rgba(168, 85, 247, 0.1) !important;
  color: #a855f7 !important;
  font-weight: 600 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-current {
  color: #6b7280 !important;
  font-size: 0.875rem !important;
}

.hc-datatable.p-datatable .p-paginator .p-dropdown {
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
}

.hc-datatable.p-datatable .p-paginator .p-dropdown:hover {
  border-color: #d1d5db !important;
}

/* ============================================
   DIALOG/MODAL STYLING
   ============================================ */
.hc-dialog.p-dialog {
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e5e7eb !important;
}

.hc-dialog.p-dialog .p-dialog-header {
  background: #ffffff !important;
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 1.25rem !important;
  border-radius: 12px 12px 0 0 !important;
}

.hc-dialog.p-dialog .p-dialog-title {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.hc-dialog.p-dialog .p-dialog-header-icon {
  width: 2rem !important;
  height: 2rem !important;
  color: #6b7280 !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
}

.hc-dialog.p-dialog .p-dialog-header-icon:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.hc-dialog.p-dialog .p-dialog-content {
  background: #ffffff !important;
  padding: 1.25rem !important;
  color: #374151 !important;
}

.hc-dialog.p-dialog .p-dialog-footer {
  background: #ffffff !important;
  border-top: 1px solid #f3f4f6 !important;
  padding: 1rem 1.25rem !important;
  border-radius: 0 0 12px 12px !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.75rem !important;
}

/* Form Fields */
.hc-form-field {
  margin-bottom: 1rem !important;
}

.hc-form-field label {
  display: block !important;
  margin-bottom: 0.4rem !important;
  color: #374151 !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}

.hc-form-field .p-inputtext,
.hc-form-field .p-dropdown .p-inputtext {
  width: 100% !important;
  border-radius: 8px !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.hc-form-field .p-calendar .p-inputtext {
  border-radius: 8px 0px 0px 8px !important;
}

.hc-form-field .p-inputgroup .p-inputtext {
  border-radius: 0px !important;
}

.hc-form-field .p-inputtext:enabled:hover,
.hc-form-field .p-calendar:not(.p-disabled):hover .p-inputtext,
.hc-form-field .p-dropdown:not(.p-disabled):hover {
  border-color: #d1d5db !important;
}

.hc-form-field .p-inputtext:enabled:focus,
.hc-form-field .p-calendar:not(.p-disabled).p-focus .p-inputtext,
.hc-form-field .p-dropdown:not(.p-disabled).p-focus {
  border-color: #a855f7 !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
}

.hc-form-field .p-inputtext.p-invalid {
  border-color: #ef4444 !important;
}

.hc-form-field .p-invalid-txt {
  color: #ef4444 !important;
  font-size: 0.75rem !important;
  margin-top: 0.25rem !important;
  display: block !important;
}

/* ============================================
   TAG/BADGE STYLING
   ============================================ */
.hc-tag.p-tag {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  padding: 0.3rem 0.65rem !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.hc-tag.p-tag.p-tag-success {
  background: #d1fae5 !important;
  color: #065f46 !important;
}

.hc-tag.p-tag.p-tag-warning {
  background: #fef3c7 !important;
  color: #92400e !important;
}

.hc-tag.p-tag.p-tag-danger {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.hc-tag.p-tag.p-tag-info {
  background: #dbeafe !important;
  color: #1e40af !important;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.hc-toast.p-toast .p-toast-message {
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e5e7eb !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-success {
  background: #ffffff !important;
  border-left: 4px solid #10b981 !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-info {
  background: #ffffff !important;
  border-left: 4px solid #3b82f6 !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-warn {
  background: #ffffff !important;
  border-left: 4px solid #f59e0b !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-error {
  background: #ffffff !important;
  border-left: 4px solid #ef4444 !important;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.hc-skeleton.p-skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%) !important;
  background-size: 200% 100% !important;
  animation: hc-skeleton-loading 1.5s ease-in-out infinite !important;
}

@keyframes hc-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-page-wrapper {
    padding: 1rem !important;
  }
  .hc-search-input.p-input-icon-left {
    width: 100% !important;
  }
  .layout-breadcrumb-left-items h4 {
    font-size: 1.25rem !important;
  }
  .hc-datatable.p-datatable .p-datatable-thead > tr > th,
  .hc-datatable.p-datatable .p-datatable-tbody > tr > td {
    padding: 0.625rem 0.75rem !important;
  }
}
/* ============================================
   EMPLOYEE FORM STYLES
   ============================================ */
.hc-form-container {
  max-width: 100%;
}

/* ============================================
   FORM SECTIONS
   ============================================ */
.hc-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-section-header > i {
  font-size: 1.5rem;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.hc-section-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.hc-section-header p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Divider */
.p-divider.p-divider-horizontal {
  border-top: 1px solid #e5e7eb;
}

.p-divider.p-divider-horizontal::before {
  border-top-color: #e5e7eb;
}

/* ============================================
   FILE UPLOAD COMPONENT
   ============================================ */
.hc-upload-box {
  position: relative;
  border: 2px dashed #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
  transition: all 0.2s;
  overflow: hidden;
}

.hc-upload-box:hover {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.02);
}

.hc-file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hc-upload-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
  gap: 0.75rem;
  transition: background 0.2s ease;
}

.hc-upload-label:hover {
  background: rgba(168, 85, 247, 0.05);
}

/* PrimeIcon WITHOUT effect */
.hc-upload-icon {
  font-size: 2rem;
  color: #a855f7;
  flex-shrink: 0;
  transition: none !important;
}

/* Text layout */
.hc-upload-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.2;
}

.hc-upload-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.hc-upload-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ============================================
   FILE PREVIEW
   ============================================ */
.hc-file-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 0.75rem;
  transition: all 0.2s;
}

.hc-file-preview:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-file-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-file-icon i {
  font-size: 1.125rem;
}

.hc-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-file-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-file-details {
  font-size: 0.75rem;
  color: #6b7280;
}

.hc-file-remove {
  width: 2rem !important;
  height: 2rem !important;
  flex-shrink: 0;
}

.hc-file-remove:hover {
  background: #fee2e2 !important;
}

/* ============================================
   FORM ACTIONS
   ============================================ */
.hc-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 2px solid #f3f4f6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-section-header > i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  .hc-section-header h3 {
    font-size: 1.125rem;
  }
  .hc-form-actions {
    flex-direction: column-reverse;
  }
  .hc-form-actions .p-button {
    width: 100%;
  }
  .hc-upload-label {
    padding: 1rem;
  }
  .hc-upload-label > i {
    font-size: 1.5rem;
  }
}
/* ============================================
   PRINT STYLES (Optional)
   ============================================ */
@media print {
  .hc-form-actions {
    display: none;
  }
  .hc-upload-box {
    display: none;
  }
  .hc-file-preview .hc-file-remove {
    display: none;
  }
}
/* ============================================
   MINIMAL RINGS LOADER WITH BLUR
   ============================================ */
.hc-loading-page {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

/* ============================================
   BLURRED BACKGROUND
   ============================================ */
.hc-blur-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* ============================================
   SPINNING RINGS LOADER
   ============================================ */
.hc-loader {
  position: relative;
  width: 150px;
  height: 150px;
  z-index: 2;
}

.hc-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: hc-spin 2s linear infinite;
}

/* Ring 1 - Outer */
.hc-ring-1 {
  width: 150px;
  height: 150px;
  margin-top: -75px;
  margin-left: -75px;
  border-top-color: #a855f7;
  border-right-color: #a855f7;
  animation-duration: 2s;
  opacity: 0.8;
}

/* Ring 2 - Middle */
.hc-ring-2 {
  width: 110px;
  height: 110px;
  margin-top: -55px;
  margin-left: -55px;
  border-top-color: #3b82f6;
  border-right-color: #3b82f6;
  animation-duration: 1.5s;
  animation-direction: reverse;
  opacity: 0.6;
}

/* Ring 3 - Inner */
.hc-ring-3 {
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  border-top-color: #06b6d4;
  border-right-color: #06b6d4;
  animation-duration: 1s;
  opacity: 0.4;
}

@keyframes hc-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Glow Effect */
.hc-ring-1 {
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.hc-ring-2 {
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.hc-ring-3 {
  filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.4));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-loader {
    width: 120px;
    height: 120px;
  }
  .hc-ring-1 {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-left: -60px;
    border-width: 2.5px;
  }
  .hc-ring-2 {
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    border-width: 2.5px;
  }
  .hc-ring-3 {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-width: 2.5px;
  }
}
/* ============================================
   FADE OUT
   ============================================ */
.hc-loading-page.fade-out {
  animation: hc-fade-out 0.5s ease-out forwards;
}

@keyframes hc-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* ============================================
   EMPLOYEE NAME CELL STYLES
   ============================================ */
.hc-employee-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

/* ============================================
   AVATAR
   ============================================ */
.hc-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.hc-avatar {
  width: 40px !important;
  height: 40px !important;
  border: 2px solid #f3f4f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.hc-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Avatar Placeholder (when no image) */
.hc-avatar-placeholder {
  border-color: rgba(168, 85, 247, 0.2);
}

.hc-avatar-placeholder .p-avatar-icon {
  font-size: 1rem !important;
}

/* Online Status Indicator */
.hc-status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  animation: hc-pulse-status 2s ease-in-out infinite;
}

@keyframes hc-pulse-status {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.4);
  }
}
/* ============================================
   EMPLOYEE INFO
   ============================================ */
.hc-employee-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
  flex: 1;
}

/* Employee Name */
.hc-employee-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hc-employee-cell:hover .hc-employee-name {
  color: #a855f7;
}

/* Contact Info */
.hc-employee-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.2;
}

.hc-employee-contact i {
  font-size: 0.75rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.hc-employee-contact span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   HOVER EFFECT ON ROW
   ============================================ */
.p-datatable .p-datatable-tbody > tr:hover .hc-employee-cell .hc-avatar {
  border-color: rgba(168, 85, 247, 0.3);
}
.p-datatable .p-datatable-tbody > tr:hover .hc-employee-cell .hc-employee-contact i {
  color: #a855f7;
}

/* ============================================
   COMPACT MODE (Optional)
   ============================================ */
.hc-employee-cell.compact {
  gap: 0.75rem;
  padding: 0.25rem 0;
}
.hc-employee-cell.compact .hc-avatar {
  width: 36px !important;
  height: 36px !important;
}
.hc-employee-cell.compact .hc-employee-name {
  font-size: 0.875rem;
}
.hc-employee-cell.compact .hc-employee-contact {
  font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-employee-cell {
    gap: 0.75rem;
  }
  .hc-avatar {
    width: 38px !important;
    height: 38px !important;
  }
  .hc-employee-name {
    font-size: 0.875rem;
  }
  .hc-employee-contact {
    font-size: 0.75rem;
  }
  .hc-status-indicator {
    width: 10px;
    height: 10px;
  }
}
/* ============================================
   EMPLOYEE PROFILE PAGE STYLES
   ============================================ */
/* Profile Header */
.hc-profile-header {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.hc-profile-banner {
  display: none;
}

.hc-profile-content {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hc-profile-avatar-section {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0;
}

.hc-profile-avatar-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.hc-profile-avatar-wrapper .p-avatar {
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  font-size: 2.5rem !important;
}

.hc-profile-avatar-wrapper .p-avatar .p-avatar-text {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.hc-status-badge {
  position: absolute;
  top: 0px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6);
  }
}
.hc-profile-basic-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hc-profile-role {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.hc-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.hc-profile-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}

.hc-profile-meta span i {
  color: #a855f7;
  font-size: 0.875rem;
}

.hc-profile-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Profile Body */
.hc-profile-body {
  margin-top: 0;
}

/* Tabs */
.hc-profile-tabs.p-tabview .p-tabview-nav {
  background: transparent;
  border: none;
  border-bottom: 2px solid #f3f4f6;
  padding: 0 1rem;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li {
  margin-right: 0.5rem;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li .p-tabview-nav-link {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #6b7280;
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin-bottom: -2px;
  transition: all 0.2s;
  gap: 5px;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li .p-tabview-nav-link:hover {
  background: rgba(168, 85, 247, 0.05);
  color: #a855f7;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link {
  background: transparent;
  color: #a855f7;
  border-bottom-color: #a855f7;
}
.hc-profile-tabs.p-tabview .p-tabview-panels {
  background: transparent;
  padding: 1rem 1rem;
}

.hc-tab-content {
  min-height: 400px;
}

/* Info Sections */
.hc-info-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  transition: all 0.2s ease;
}

.designation-main-card .hc-info-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  transition: all 0.2s ease;
}

.section-card .hc-info-section ul,
.section-card .hc-info-section ol {
  padding-left: 22px;
  margin: 8px 0;
}

.hc-info-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.hc-section-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-section-header i {
  font-size: 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.section-card .hc-section-header i {
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.hc-section-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

.hc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.hc-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-info-item.hc-full-width {
  grid-column: 1/-1;
}

.hc-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hc-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
}

/* Stats Cards */
.hc-stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hc-stat-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.hc-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #a855f7;
}

.hc-stat-card i {
  font-size: 20px;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.hc-stat-card div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.hc-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.hc-stat-card.hc-salary-card i {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

/* Profile Table */
.hc-profile-table.hc-datatable {
  margin-top: 0;
}

.hc-profile-table .p-datatable-thead > tr > th {
  background: #fafafa !important;
  font-size: 0.8125rem;
  padding: 1rem !important;
}

.hc-profile-table .p-datatable-tbody > tr > td {
  padding: 1rem !important;
}

/* Amount Styling */
.hc-amount {
  font-weight: 600;
  color: #111827;
}

.hc-net-amount {
  color: black;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hc-profile-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-profile-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .hc-profile-header {
    padding: 1.5rem;
  }
  .hc-profile-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .hc-profile-avatar-section {
    flex-direction: row;
    width: 100%;
    gap: 1rem;
  }
  .hc-profile-avatar-wrapper .p-avatar {
    width: 80px !important;
    height: 80px !important;
    font-size: 2rem !important;
  }
  .hc-profile-avatar-wrapper .p-avatar .p-avatar-text {
    font-size: 40px;
    font-weight: 600;
  }
  .hc-status-badge {
    width: 12px;
    height: 12px;
    top: 6px;
    right: 6px;
    border-width: 2px;
  }
  .hc-profile-name {
    font-size: 1.5rem;
  }
  .hc-profile-role {
    font-size: 0.9375rem;
  }
  .hc-profile-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hc-profile-actions {
    width: 100%;
    flex-direction: column;
  }
  .hc-profile-actions .p-button {
    width: 100%;
  }
  .hc-info-section {
    padding: 1rem;
  }
  .hc-section-header i {
    width: 50px;
    height: 50px;
    font-size: 18px !important;
  }
  .hc-info-grid {
    grid-template-columns: 1fr;
  }
  .hc-stats-cards {
    grid-template-columns: 1fr;
  }
  .hc-profile-tabs.p-tabview .p-tabview-nav {
    padding: 0 0.5rem;
  }
  .hc-profile-tabs.p-tabview .p-tabview-nav li .p-tabview-nav-link {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .hc-profile-tabs.p-tabview .p-tabview-panels {
    padding: 1rem 0.5rem;
  }
}
/* ============================================
   LEAVE APPLICATION FORM STYLES
   ============================================ */
/* Leave Balance Section */
.hc-leave-balance-section {
  margin-bottom: 2rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-balance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hc-balance-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.hc-balance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hc-balance-card i {
  font-size: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.hc-balance-card.hc-applying {
  border-color: #fbbf24;
}

.hc-balance-card.hc-applying i {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.hc-balance-card.hc-remaining {
  border-color: #10b981;
}

.hc-balance-card.hc-remaining i {
  background: linear-gradient(135deg, #10b981, #059669);
}

.hc-balance-card div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-balance-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.hc-balance-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Leave Days Section */
.hc-leave-days-section {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Leave Days Table */
.hc-leave-days-table.hc-datatable .p-datatable-thead > tr > th {
  background: #f9fafb !important;
  color: #374151 !important;
  font-weight: 600;
  padding: 1rem !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.hc-leave-days-table.hc-datatable .p-datatable-tbody > tr > td {
  padding: 1.25rem 1rem !important;
  vertical-align: middle;
}

.hc-leave-days-table.hc-datatable .p-datatable-tbody > tr:hover {
  background: #fafafa !important;
}

/* Date Column */
.hc-leave-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-date-main {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-date-day {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* Day Type Dropdown in Table */
.hc-day-type-dropdown.p-dropdown {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
}

.hc-day-type-dropdown.p-dropdown:not(.p-disabled):hover {
  border-color: #a855f7;
}

.hc-day-type-dropdown.p-dropdown:not(.p-disabled).p-focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.1);
}

/* Day Value Column */
.hc-day-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  display: inline-block;
}

/* Total Summary */
.hc-total-summary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

.hc-total-value {
  font-size: 1.25rem;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
}

/* Divider */
.p-divider {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hc-balance-cards {
    grid-template-columns: 1fr;
  }
  .hc-balance-card {
    padding: 1.25rem;
  }
  .hc-balance-card i {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
  .hc-balance-value {
    font-size: 1.5rem;
  }
  .hc-leave-days-table.hc-datatable .p-datatable-tbody > tr > td {
    padding: 1rem 0.75rem !important;
  }
  .hc-total-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hc-total-value {
    font-size: 1.125rem;
  }
}
/* ============================================
   LEAVE DETAILS DIALOG STYLES
   ============================================ */
.hc-leave-details-dialog.p-dialog {
  border-radius: 16px !important;
  max-width: 95vw;
}

.hc-leave-details-dialog .p-dialog-content {
  padding: 0 !important;
}

/* Dialog Header */
.hc-dialog-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.hc-dialog-title-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-dialog-title-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hc-leave-id {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.hc-status-tag {
  font-size: 0.75rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
}

/* Dialog Content */
.hc-leave-details-content {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Detail Section */
.hc-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-detail-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-detail-section-header i {
  font-size: 1.125rem;
  color: #a855f7;
}

.hc-detail-section-header span {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

/* Employee Info Card */
.hc-employee-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.hc-employee-avatar {
  flex-shrink: 0;
}
.hc-employee-avatar .p-avatar .p-avatar-text {
  text-transform: uppercase;
}

.hc-employee-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-employee-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.hc-employee-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.hc-employee-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-employee-meta i {
  color: #a855f7;
  font-size: 0.875rem;
}

/* Info Grid */
.hc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.hc-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hc-info-item.hc-total-days {
  padding: 2px 0 0 20px;
}

.hc-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hc-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
}

.hc-info-value.hc-highlight {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #a855f7;
}

/* Reason Box */
.hc-reason-box {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.hc-reason-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
}

/* Attachment Card */
.hc-attachment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.hc-attachment-card:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-attachment-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hc-attachment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-attachment-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-attachment-meta {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* Leave Days Table */
.hc-detail-table.hc-datatable .p-datatable-thead > tr > th {
  background: #f9fafb !important;
  color: #6b7280 !important;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.875rem 1rem !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.hc-detail-table.hc-datatable .p-datatable-tbody > tr > td {
  padding: 1rem !important;
  font-size: 0.875rem;
}

.hc-detail-table.hc-datatable .p-datatable-tbody > tr:hover {
  background: #fafafa !important;
}

/* Date in Table */
.hc-detail-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-detail-date-main {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-detail-date-day {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* Day Value in Table */
.hc-detail-day-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  display: inline-block;
}

/* Dialog Footer */
.hc-dialog-footer-content {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.hc-dialog-footer-content .p-button-danger {
  background: #ef4444 !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.hc-dialog-footer-content .p-button-danger:hover {
  background: #dc2626 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hc-leave-details-dialog.p-dialog {
    width: 95vw !important;
    max-width: 95vw !important;
  }
  .hc-leave-details-content {
    padding: 1rem;
  }
  .hc-dialog-header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-employee-info-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-info-grid {
    grid-template-columns: 1fr;
  }
  .hc-employee-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hc-attachment-card {
    flex-wrap: wrap;
  }
  .hc-dialog-footer-content {
    flex-direction: column-reverse;
    width: 100%;
  }
  .hc-dialog-footer-content .p-button {
    width: 100%;
  }
  .hc-detail-table.hc-datatable .p-datatable-thead > tr > th,
  .hc-detail-table.hc-datatable .p-datatable-tbody > tr > td {
    padding: 0.75rem !important;
    font-size: 0.8125rem;
  }
}
/* ============================================
   NOTIFICATION BELL STYLES
   ============================================ */
/* Notification Button */
.hc-notification-wrapper {
  position: relative;
  display: inline-flex;
}

.hc-notification-btn {
  position: relative;
  width: 44px !important;
  height: 44px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.2s ease;
}

.hc-notification-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.hc-notification-btn .pi-bell {
  font-size: 1.55rem;
}

.hc-notification-btn .p-badge {
  position: absolute;
  top: 3px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 0.35rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Notification Panel */
.hc-notification-panel.p-overlaypanel {
  width: 420px;
  max-width: 95vw;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  margin-top: 0.5rem;
}

.hc-notification-panel .p-overlaypanel-content {
  padding: 0;
}

/* Notification Container */
.hc-notification-container {
  display: flex;
  flex-direction: column;
}

/* Header */
.hc-notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-notification-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hc-notification-title h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hc-unread-badge {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
}

.hc-clear-all-btn {
  color: #ef4444 !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem !important;
}

.hc-clear-all-btn:hover {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

/* Notification List */
.hc-notification-list .p-scrollpanel .p-scrollpanel-wrapper {
  border-right: none;
}

.hc-notification-list .p-scrollpanel .p-scrollpanel-bar {
  background: #e5e7eb;
  opacity: 1;
  width: 6px;
  border-radius: 3px;
}

.hc-notification-list .p-scrollpanel .p-scrollpanel-bar:hover {
  background: #d1d5db;
}

/* Notification Item */
.hc-notification-item {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hc-notification-item:hover {
  background: #fafafa;
}

.hc-notification-item.hc-unread {
  background: rgba(168, 85, 247, 0.03);
}

.hc-notification-item.hc-unread:hover {
  background: rgba(168, 85, 247, 0.06);
}

/* Notification Icon */
.hc-notification-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.hc-notification-icon.hc-notif-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.hc-notification-icon.hc-notif-info {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.hc-notification-icon.hc-notif-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.hc-notification-icon.hc-notif-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Notification Content */
.hc-notification-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.hc-notification-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.hc-notification-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hc-notification-text p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hc-notification-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}

.hc-notification-time i {
  font-size: 0.7rem;
}

/* Close Button */
.hc-notif-close {
  width: 28px !important;
  height: 28px !important;
  color: #9ca3af !important;
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.2s ease;
}

.hc-notification-item:hover .hc-notif-close {
  opacity: 1;
}

.hc-notif-close:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
}

/* Unread Indicator */
.hc-unread-indicator {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

/* Empty State */
.hc-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}

.hc-empty-state i {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.hc-empty-state p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}

.hc-empty-state span {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Footer */
.hc-notification-footer {
  padding: 0.75rem 1.25rem;
  border-top: 2px solid #f3f4f6;
  display: flex;
  justify-content: center;
}

.hc-view-all-btn {
  color: #a855f7 !important;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
  padding: 0.625rem !important;
}

.hc-view-all-btn:hover {
  background: rgba(168, 85, 247, 0.05) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hc-notification-panel.p-overlaypanel {
    width: 95vw;
    margin-top: 0.25rem;
  }
  .hc-notification-header {
    padding: 1rem;
  }
  .hc-notification-title h3 {
    font-size: 1rem;
  }
  .hc-notification-item {
    padding: 0.875rem 1rem;
  }
  .hc-notification-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  .hc-notification-text h4 {
    font-size: 0.875rem;
  }
  .hc-notification-text p {
    font-size: 0.8125rem;
  }
  .hc-notification-list {
    max-height: 350px;
  }
}
/* Dark mode in topbar */
.layout-topbar .hc-notification-btn {
  color: rgba(255, 255, 255, 0.9) !important;
}

.layout-topbar .hc-notification-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Salary Header */
.hc-salary-header {
  background: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  z-index: 100;
}
.hc-salary-header.sticky {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hc-page-container {
  transition: margin-top 0.3s ease;
}
.hc-page-container.header-sticky {
  margin-top: 110px;
}

.hc-salary-header-left {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.hc-employee-section {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.hc-employee-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.hc-employee-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.hc-employee-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-employee-meta i {
  color: #a855f7;
}

.hc-salary-period {
  display: flex;
  gap: 2rem;
  padding-left: 2rem;
}

.hc-period-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-period-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hc-period-value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 600;
}

.hc-salary-header-right {
  gap: 0.75rem;
}

.hc-salary-header-right .p-button {
  flex: 1;
  min-width: 100px;
}

/* Net Salary Card */
.hc-net-salary-card {
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hc-net-salary-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hc-net-salary-content > i {
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  padding: 1rem;
  border-radius: 8px;
}

.hc-net-salary-content > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-net-label {
  font-size: 1.5rem;
  opacity: 0.9;
  font-weight: 600;
  color: black;
  display: flex;
  gap: 0.75rem;
}

.hc-net-amount-salary {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: black;
  align-content: center;
}

.hc-salary-formula {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 14px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  flex-wrap: wrap;
}

.hc-salary-formula:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-salary-formula i {
  font-size: 1rem;
  opacity: 0.9;
  color: black;
}

.hc-salary-formula .hc-result {
  margin-left: auto;
  font-size: 1.375rem;
  color: black;
  font-weight: 700;
}

/* Page Container */
.hc-page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Content Card */
.hc-content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

/* Salary Section */
.hc-salary-section {
  margin-bottom: 1.5rem;
}

.hc-section-header-salary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-section-title {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hc-section-title i {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1.5rem;
  color: white;
}

.hc-section-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hc-section-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.hc-section-total.hc-deduction-total {
  color: #ef4444;
}

/* Breakdown Items */
.hc-salary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.hc-breakdown-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-breakdown-item.hc-highlight-deduction {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.hc-breakdown-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-breakdown-label > span:first-child {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-breakdown-percent {
  font-size: 0.75rem;
  color: #6b7280;
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}

.hc-breakdown-note {
  font-size: 0.8125rem;
  color: #6b7280;
}

.hc-breakdown-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  min-width: 120px;
  text-align: right;
}

.hc-deduction-amount {
  color: #ef4444;
}

.hc-breakdown-total {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  padding: 1.25rem 1rem;
  font-weight: 700;
}

.hc-breakdown-total .hc-breakdown-label {
  font-size: 1.125rem;
  font-weight: 700;
}

.hc-breakdown-total .hc-breakdown-amount {
  font-size: 1.375rem;
}

.hc-gross-amount {
  color: #10b981;
}

/* Info Cards */
.hc-info-card {
  margin-bottom: 1.5rem;
}

.hc-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-info-header i {
  font-size: 1.25rem;
  color: #a855f7;
}

.hc-info-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* Working Days Grid */
.hc-working-days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hc-day-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  transition: all 0.2s;
}

.hc-day-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hc-day-value {
  font-weight: 700;
  color: #111827;
}

.hc-day-value.hc-working {
  color: #a855f7;
}

.hc-day-label {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

/* Leave Summary */
.hc-leave-summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hc-leave-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 12px;
  border: 2px dashed #ef4444;
}

.hc-leave-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ef4444;
}

.hc-leave-text {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.hc-leave-dates {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-dates-label {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 600;
}

.hc-leave-date-badge {
  font-size: 0.875rem;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

/* Payment Info */
.hc-payment-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-payment-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.875rem;
  background: #f9fafb;
  border-radius: 8px;
}

.hc-payment-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hc-payment-value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 600;
}

.hc-wrapper-div {
  gap: 2px;
  display: grid;
  margin-bottom: 8px;
}

/* Tag */
.hc-tag {
  padding: 0.5rem 1rem;
}

/* InputNumber for editable fields */
.hc-breakdown-item .p-inputnumber {
  width: 100%;
  min-width: 120px;
}

.hc-breakdown-item .p-inputnumber-input {
  text-align: right;
  font-weight: 600;
}

/* Grid Layout */
.hc-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hc-salary-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-salary-header-left {
    width: 100%;
    flex-direction: column;
  }
  .hc-salary-period {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #f3f4f6;
    padding-top: 1rem;
    width: 100%;
  }
  .hc-salary-header-right {
    width: 100%;
  }
  .hc-net-salary-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-salary-formula {
    width: 100%;
    justify-content: space-between;
  }
  .hc-salary-formula .hc-result {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: right;
  }
  .hc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hc-salary-header {
    padding: 1.5rem;
  }
  .hc-employee-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-employee-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hc-net-salary-card {
    padding: 1.5rem;
  }
  .hc-net-salary-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .hc-net-amount-salary {
    font-size: 2rem;
  }
  .hc-salary-formula {
    flex-wrap: wrap;
    font-size: 1rem;
    gap: 0.5rem;
  }
  .hc-working-days-grid {
    grid-template-columns: 1fr;
  }
  .hc-breakdown-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hc-breakdown-amount {
    width: 100%;
    text-align: left;
  }
  .hc-salary-header-right {
    flex-direction: column;
    width: 100%;
  }
  .hc-salary-header-right .p-button {
    width: 100%;
  }
}
/* Main Container */
.expense-form-container {
  max-width: 800px;
  margin: 20px auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.expense-form-header {
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
}

/* Page Title */
.page-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Form Content */
.form-content {
  padding: 24px;
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1/-1;
}

/* Form Labels */
.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.required {
  color: #dc2626;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Select Dropdown */
.form-select {
  background-color: white;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 2px dashed #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #f9fafb;
}

.file-upload-label:hover {
  border-color: #059669;
  background-color: #f0fdf4;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Upload Icon */
.upload-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #666;
}

.upload-svg {
  width: 32px;
  height: 32px;
  color: #059669;
}

.upload-text {
  font-weight: 500;
}

.upload-subtext {
  font-size: 12px;
  color: #999;
}

/* File Info */
.file-info {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

/* Preview Image */
.preview-image {
  margin-top: 12px;
  max-width: 200px;
  border-radius: 6px;
  display: block;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-pending {
  background-color: #fef3c7;
  color: #92400e;
}

.status-approved {
  background-color: #d1fae5;
  color: #065f46;
}

/* Help Text */
.help-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid #e5e5e5;
  justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .expense-form-container {
    margin: 10px;
  }
  .expense-form-header {
    padding: 16px;
  }
  .form-content {
    padding: 16px;
  }
  .form-actions {
    padding: 16px;
    flex-direction: column-reverse;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 20px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .upload-icon {
    gap: 6px;
  }
  .upload-svg {
    width: 24px;
    height: 24px;
  }
}
/* Header Section */
.expense-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
}

.expense-list-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.expense-list-actions {
  display: flex;
  gap: 12px;
}

/* Filters Section */
.expense-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-select,
.filter-input {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  background-color: white;
  transition: all 0.2s;
}

.filter-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Date Range Input */
.date-range-input {
  position: relative;
  display: flex;
  align-items: center;
}

.calendar-icon {
  position: absolute;
  left: 12px;
  pointer-events: none;
  font-size: 16px;
}

.date-range-input .filter-input {
  padding-left: 36px;
  width: 100%;
}

/* Table Section */
.expense-table-container {
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.expense-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.expense-table thead {
  background-color: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}

.expense-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.expense-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}

.expense-table tbody tr:hover {
  background-color: #f9fafb;
}

.expense-table tbody tr:last-child {
  border-bottom: none;
}

.expense-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: #1f2937;
}

.amount-cell {
  font-weight: 600;
  text-align: left;
}

/* Total Row */
.total-row {
  border-top: 2px solid #d1d5db !important;
  font-weight: 600;
}

.total-row:hover {
  background-color: #f3f4f6 !important;
}

.total-label {
  text-align: right;
  font-weight: 600;
  color: #1f2937;
}

.total-amount {
  font-weight: 700;
  color: #059669;
  font-size: 15px;
}

/* Action Button */
.action-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-btn {
  background-color: #059669;
  color: white;
  width: 36px;
  height: 36px;
}

.view-btn:hover {
  background-color: #047857;
}

.eye-icon {
  font-size: 16px;
}

/* Pagination */
.pagination-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 14px;
  color: #6b7280;
}

.pagination-controls {
  display: flex;
  gap: 8px;
}

.pagination-btn {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: white;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  min-width: 36px;
  height: 36px;
}

.pagination-btn:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: #059669;
  color: white;
}

.btn-primary:hover {
  background-color: #047857;
}

.btn-primary:active {
  background-color: #065f46;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .expense-filters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .expense-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .expense-list-actions {
    width: 100%;
  }
  .expense-list-actions .btn {
    flex: 1;
    justify-content: center;
  }
  .expense-filters {
    grid-template-columns: 1fr;
  }
  .expense-table-container {
    overflow-x: auto;
  }
  .expense-table {
    min-width: 800px;
  }
  .pagination-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .expense-list-title {
    font-size: 20px;
  }
  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  .expense-table th,
  .expense-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.remark-text {
  display: inline-block;
  max-width: 230px;
  /* slightly less than column width */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/* Client View Profile Styles */
/* Info Row Styles */
.hc-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.hc-info-row:last-child {
  border-bottom: none;
}

.hc-info-labels {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-color-secondary);
  font-size: 0.95rem;
}

.hc-info-labels i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.hc-info-values {
  font-weight: 600;
  color: var(--text-color);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

/* Info Container */
.hc-info-container {
  background: var(--surface-card);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

/* Details Grid - Two Column Layout */
.hc-details-grid-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hc-details-grid-two-column {
    grid-template-columns: 1fr;
  }
}
/* Profile Header Enhancements for Client View */
.hc-profile-header .hc-profile-banner {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hc-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hc-info-values {
    text-align: left;
    max-width: 100%;
  }
  .hc-profile-actions {
    width: 100%;
  }
  .hc-profile-actions .hc-btn-secondary {
    width: 100%;
  }
}
/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .hc-info-container {
    background: var(--surface-ground);
  }
  .hc-info-row {
    border-bottom-color: var(--surface-border);
  }
}
/* Additional styling for consistent spacing */
.hc-form-section {
  margin-bottom: 1.5rem;
}

.hc-form-section:last-child {
  margin-bottom: 0;
}

/* Section Header */
.hc-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.hc-section-header i {
  font-size: 1rem;
}

.hc-section-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.hc-section-header p {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: var(--text-color-secondary);
}

.hover-text {
  cursor: pointer;
  color: #374151 !important;
}

.hover-text:hover {
  color: #a855f7 !important;
}

/* Invoice Items Table Styling */
.invoice-items-table {
  margin-top: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.items-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr 0.8fr 1fr 60px;
  gap: 0.5rem;
  background-color: #f3f4f6;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
}

.items-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr 0.8fr 1fr 60px;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.items-row:last-child {
  border-bottom: none;
}

.items-row:hover {
  background-color: #f9fafb;
}

.item-col {
  display: flex;
}

.item-col .p-inputtext,
.item-col .p-inputnumber {
  width: 100%;
}

.item-name {
  grid-column: span 1;
}

.item-sac {
  grid-column: span 1;
}

.item-qty {
  grid-column: span 1;
}

.item-rate {
  grid-column: span 1;
}

.item-cgst {
  grid-column: span 1;
}

.item-sgst {
  grid-column: span 1;
}

.item-amount {
  grid-column: span 1;
}

.item-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* space between + and delete */
  width: 60px;
}

.item-action .p-button {
  width: 32px;
  height: 32px;
}

/* Invoice Totals Styling */
.invoice-totals {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.totals-grid {
  width: 400px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.total-row label {
  font-size: 0.95rem;
  color: #374151;
}

.total-value {
  font-size: 1rem;
  color: #111827;
  font-weight: 500;
}

.total-final {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid #d1d5db;
}

.total-final label {
  font-size: 1.1rem;
  font-weight: 600;
}

.total-final .total-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #059669;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .items-header,
  .items-row {
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 0.6fr 0.6fr 0.8fr 60px;
    gap: 0.25rem;
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 992px) {
  .invoice-items-table {
    overflow-x: auto;
  }
  .items-header,
  .items-row {
    min-width: 1000px;
  }
  .totals-grid {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .items-header,
  .items-row {
    grid-template-columns: minmax(150px, 2fr) minmax(80px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(80px, 0.8fr) minmax(80px, 0.8fr) minmax(100px, 1fr) 60px;
  }
}
/* Input field adjustments within items table */
.items-row .p-inputnumber-input {
  text-align: center;
}

.items-row .p-button-icon-only {
  width: 2rem;
  height: 32px;
}

.rp-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.rp-field .rp-name-input {
  width: 320px;
  max-width: 100%;
}
.rp-field .rp-required {
  color: #EF4444;
}
.rp-field .rp-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
  display: block;
}

.rp-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.rp-heading-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.rp-heading-sub {
  font-size: 12px;
  color: #6B7280;
}

.rp-section {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.rp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.rp-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.rp-section-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rp-section-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #EEF2FF;
  color: #4F46E5;
}

.rp-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid #E5E7EB;
  background: #FAFAFA;
}

.rp-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid #D1D5DB;
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rp-chip:hover {
  border-color: #6366F1;
  color: #4F46E5;
  background: #EEF2FF;
}
.rp-chip.active {
  border-color: #4F46E5;
  background: #EEF2FF;
  color: #4338CA;
}
.rp-chip .p-checkbox {
  pointer-events: none;
}

.rp-table {
  width: 100%;
  border-collapse: collapse;
}
.rp-table thead tr {
  background: #F3F4F6;
}
.rp-table thead th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid #E5E7EB;
}
.rp-table thead th:first-child {
  width: 180px;
}
.rp-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.1s;
}
.rp-table tbody tr:last-child {
  border-bottom: none;
}
.rp-table tbody tr:hover {
  background: #FAFAFA;
}
.rp-table tbody td {
  padding: 11px 16px;
  font-size: 13px;
  color: #374151;
  background-color: #FAFAFA;
}
.rp-table tbody td:first-child {
  font-weight: 600;
  color: #111827;
}

.rp-cb-cell {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rp-cb-cell label {
  font-size: 13px;
  color: #4B5563;
  cursor: pointer;
}

.rp-empty {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #9CA3AF;
  font-style: italic;
}

.rp-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: end;
}

.rp-card {
  background-color: #fff;
  padding: 20px;
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item.add-new-option {
  border-top: 1px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  color: #6366f1;
  font-weight: 600;
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item.add-new-option:hover {
  background-color: #f0f0ff;
  color: #4f46e5;
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item.add-new-option .p-dropdown-item-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.add-new-designation-option {
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
  padding-top: 8px !important;
  font-weight: 600;
  color: #6366f1;
}

.add-new-designation-option:hover {
  background-color: #f0f0ff !important;
}

.hc-view-more-btn {
  width: 100%;
  justify-content: center;
  color: #4f46e5 !important;
  font-size: 0.85rem;
  font-weight: 500;
}

.hc-view-more-btn:hover {
  background: #f5f3ff !important;
}

:root {
  --np-font: 'DM Sans', sans-serif;
  /* Brand */
  --np-accent: #a855f7;
  --np-accent-dark: #9333ea;
  --np-accent-light: rgba(168, 85, 247, 0.10);
  --np-accent-ring: rgba(168, 85, 247, 0.22);
  /* Surface */
  --np-bg: #f8f7fc;
  --np-card: #ffffff;
  --np-card-hover: #faf9fe;
  --np-border: #ede8f5;
  --np-border-light: #f3effa;
  /* Text */
  --np-text-primary: #18102e;
  --np-text-secondary: #5b5270;
  --np-text-muted: #9b93ae;
  /* Status */
  --np-success-bg: #d1fae5;
  --np-success-fg: #065f46;
  --np-warning-bg: #fef3c7;
  --np-warning-fg: #92400e;
  --np-error-bg: #fee2e2;
  --np-error-fg: #991b1b;
  --np-info-bg: #e0e7ff;
  --np-info-fg: #3730a3;
  --np-profile-bg: #ede9fe;
  --np-profile-fg: #6d28d9;
  /* Shadows */
  --np-shadow-sm: 0 1px 3px rgba(90, 50, 160, 0.07),
      0 1px 2px rgba(90, 50, 160, 0.05);
  --np-shadow-md: 0 4px 16px rgba(90, 50, 160, 0.10),
      0 1px 4px rgba(90, 50, 160, 0.06);
  --np-shadow-lg: 0 12px 32px rgba(90, 50, 160, 0.14),
      0 2px 8px rgba(90, 50, 160, 0.08);
  /* Transitions */
  --np-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --np-duration: 0.22s;
}

@keyframes np-page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-np-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.hc-np-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Back button */
.hc-np-back {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  cursor: pointer;
  color: var(--np-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--np-duration) var(--np-ease), color var(--np-duration) var(--np-ease), border-color var(--np-duration) var(--np-ease), box-shadow var(--np-duration) var(--np-ease);
  box-shadow: var(--np-shadow-sm);
}

.hc-np-back:hover {
  background: var(--np-accent-light);
  color: var(--np-accent);
  border-color: var(--np-accent-ring);
  box-shadow: 0 0 0 3px var(--np-accent-ring);
}

.hc-np-back .pi {
  font-size: 0.875rem;
}

/* Titles */
.hc-np-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--np-text-primary);
  margin: 0 0 0.2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hc-np-subtitle {
  font-size: 0.875rem;
  color: var(--np-text-muted);
  margin: 0;
  font-weight: 400;
}

/* Mark All Read button */
.hc-np-header-right .p-button {
  font-family: var(--np-font) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--np-border) !important;
  color: var(--np-text-secondary) !important;
  background: var(--np-card) !important;
  box-shadow: var(--np-shadow-sm) !important;
  transition: all var(--np-duration) var(--np-ease) !important;
  gap: 0.375rem !important;
}

.hc-np-header-right .p-button:hover {
  background: var(--np-accent-light) !important;
  color: var(--np-accent) !important;
  border-color: var(--np-accent-ring) !important;
  box-shadow: 0 0 0 3px var(--np-accent-ring) !important;
}

/* ─────────────────────────────────────────────────────────
   TOOLBAR
   ───────────────────────────────────────────────────────── */
.hc-np-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  margin-top: 1rem;
}

/* ─────────────────────────────────────────────────────────
   FILTER TABS
   ───────────────────────────────────────────────────────── */
.hc-np-tabs {
  display: flex;
  gap: 1rem;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  padding: 7px 14px;
  border-radius: 10px;
  box-shadow: var(--np-shadow-sm);
}

.hc-np-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-family: var(--np-font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--np-text-muted);
  cursor: pointer;
  transition: all var(--np-duration) var(--np-ease);
  white-space: nowrap;
}

.hc-np-tab:hover {
  color: var(--np-text-primary);
}

.hc-np-tab.hc-np-tab--active {
  background: var(--np-accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
  padding: 8px;
}

/* Tab count badge */
.hc-np-tab-count {
  font-family: var(--np-font);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  border-radius: 999px;
  padding: 0.1rem 0.15rem;
  min-width: 1.25rem;
  text-align: center;
  transition: all var(--np-duration) var(--np-ease);
}

.hc-np-tab.hc-np-tab--active .hc-np-tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hc-np-tab-count.hc-np-tab-count--active {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ─────────────────────────────────────────────────────────
   DATE GROUP LABELS
   ───────────────────────────────────────────────────────── */
.hc-np-group {
  margin-bottom: 0.25rem;
}

.hc-np-group-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hc-np-group-label span {
  font-family: var(--np-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--np-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-np-group-divider {
  flex: 1;
  height: 1px;
  background: var(--np-border);
}

/* ─────────────────────────────────────────────────────────
   NOTIFICATION ITEM
   ───────────────────────────────────────────────────────── */
.hc-np-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  cursor: default;
  transition: box-shadow var(--np-duration) var(--np-ease), border-color var(--np-duration) var(--np-ease), background var(--np-duration) var(--np-ease), transform var(--np-duration) var(--np-ease);
  animation: np-item-in 0.3s var(--np-ease) both;
}

@keyframes np-item-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-np-item:hover {
  background: var(--np-card-hover);
  border-color: #d8ccf0;
  box-shadow: var(--np-shadow-md);
  transform: translateY(-1px);
}

/* Unread state */
.hc-np-item.hc-np-item--unread {
  background: #fdfbff;
  border-color: #ddd0f7;
  border-left: 3px solid var(--np-accent);
}

.hc-np-item.hc-np-item--unread:hover {
  background: #faf6ff;
  border-color: var(--np-accent);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.12), var(--np-shadow-sm);
}

/* Unread indicator dot */
.hc-np-unread-dot {
  position: absolute;
  top: 1.1rem;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--np-accent);
  border: 2.5px solid var(--np-bg);
  box-shadow: 0 0 0 1.5px var(--np-accent-ring);
  animation: np-dot-pulse 2.5s ease-in-out infinite;
}

@keyframes np-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 1.5px var(--np-accent-ring);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
  }
}
/* ─────────────────────────────────────────────────────────
   ITEM ICON / AVATAR
   ───────────────────────────────────────────────────────── */
.hc-np-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--np-border-light);
  border: 1.5px solid var(--np-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--np-duration) var(--np-ease), box-shadow var(--np-duration) var(--np-ease);
}

.hc-np-item:hover .hc-np-item-icon {
  border-color: var(--np-accent-ring);
  box-shadow: 0 0 0 3px var(--np-accent-ring);
}

.hc-np-item-icon img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hc-np-item-icon .pi {
  font-size: 1.2rem;
  color: var(--np-accent);
  transition: transform var(--np-duration) var(--np-ease);
}

.hc-np-item:hover .hc-np-item-icon .pi {
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────
   ITEM CONTENT
   ───────────────────────────────────────────────────────── */
.hc-np-item-content {
  flex: 1;
  min-width: 0;
}

.hc-np-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.hc-np-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Sender name */
.hc-np-item-content h4 {
  font-family: var(--np-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--np-text-primary);
  margin: 0;
  line-height: 1.3;
}

/* Message body */
.hc-np-item-content p {
  font-family: var(--np-font);
  font-size: 0.875rem;
  color: var(--np-text-secondary);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Timestamp */
.hc-np-item-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--np-font);
  font-size: 0.75rem;
  color: var(--np-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.hc-np-item-time .pi {
  font-size: 0.65rem;
  color: var(--np-text-muted);
}

/* ─────────────────────────────────────────────────────────
   TYPE BADGE
   ───────────────────────────────────────────────────────── */
.hc-np-type-badge {
  font-family: var(--np-font);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.175rem 0.55rem;
  border-radius: 999px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}

/* ─────────────────────────────────────────────────────────
   ITEM ACTIONS
   ───────────────────────────────────────────────────────── */
.hc-np-item-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-left: 0.25rem;
  opacity: 0;
  transition: opacity var(--np-duration) var(--np-ease);
}

.hc-np-item:hover .hc-np-item-actions {
  opacity: 1;
}

/* Action buttons */
.hc-np-item-actions .p-button.p-button-rounded.p-button-text {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 8px !important;
  color: var(--np-text-muted) !important;
  background: transparent !important;
  border: none !important;
  transition: background var(--np-duration) var(--np-ease), color var(--np-duration) var(--np-ease) !important;
}

/* Mark read (check) */
.hc-np-item-actions .p-button.p-button-rounded.p-button-text:not(.p-button-danger):hover {
  background: var(--np-accent-light) !important;
  color: var(--np-accent) !important;
}

/* Remove (X danger) */
.hc-np-item-actions .p-button.p-button-rounded.p-button-text.p-button-danger {
  color: #d1c0df !important;
}

.hc-np-item-actions .p-button.p-button-rounded.p-button-text.p-button-danger:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
}

.hc-np-item-actions .p-button .p-button-icon {
  font-size: 0.8rem !important;
}

/* ─────────────────────────────────────────────────────────
   SKELETON LOADER
   ───────────────────────────────────────────────────────── */
.hc-np-skeleton-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.hc-np-skeleton-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(90deg, #ede8f5 25%, #f5f0fb 50%, #ede8f5 75%);
  background-size: 200% 100%;
  animation: np-shimmer 1.6s ease-in-out infinite;
}

.hc-np-skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 0.2rem;
}

.hc-np-skeleton-line {
  height: 11px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ede8f5 25%, #f5f0fb 50%, #ede8f5 75%);
  background-size: 200% 100%;
  animation: np-shimmer 1.6s ease-in-out infinite;
}

.hc-np-skeleton-line--title {
  width: 30%;
  animation-delay: 0.05s;
}

.hc-np-skeleton-line--msg {
  width: 78%;
  animation-delay: 0.1s;
}

.hc-np-skeleton-line--time {
  width: 20%;
  animation-delay: 0.15s;
}

@keyframes np-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ─────────────────────────────────────────────────────────
   EMPTY STATE
   ───────────────────────────────────────────────────────── */
.hc-np-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  animation: np-empty-in 0.4s var(--np-ease) both;
}

@keyframes np-empty-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hc-np-empty .pi-bell-slash {
  font-size: 3rem;
  color: #d8cff0;
  margin-bottom: 1.25rem;
  display: block;
}

.hc-np-empty p {
  font-family: var(--np-font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--np-text-secondary);
  margin: 0 0 0.4rem;
}

.hc-np-empty span {
  font-family: var(--np-font);
  font-size: 0.875rem;
  color: var(--np-text-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.hc-np-empty .p-button {
  font-family: var(--np-font) !important;
  font-size: 0.875rem !important;
  color: var(--np-accent) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  background: var(--np-accent-light) !important;
  border: none !important;
  transition: background var(--np-duration), box-shadow var(--np-duration) !important;
}

.hc-np-empty .p-button:hover {
  background: rgba(168, 85, 247, 0.18) !important;
  box-shadow: 0 0 0 3px var(--np-accent-ring) !important;
}

/* ─────────────────────────────────────────────────────────
   PAGINATOR
   ───────────────────────────────────────────────────────── */
.hc-np-paginator {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.hc-np-paginator .p-paginator {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-family: var(--np-font) !important;
}

.hc-np-paginator .p-paginator .p-paginator-first,
.hc-np-paginator .p-paginator .p-paginator-prev,
.hc-np-paginator .p-paginator .p-paginator-next,
.hc-np-paginator .p-paginator .p-paginator-last,
.hc-np-paginator .p-paginator .p-paginator-pages .p-paginator-page {
  font-family: var(--np-font) !important;
  font-size: 0.875rem !important;
  min-width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 8px !important;
  color: var(--np-text-secondary) !important;
  background: var(--np-card) !important;
  border: 1.5px solid var(--np-border) !important;
  margin: 0 0.2rem !important;
  transition: all var(--np-duration) var(--np-ease) !important;
}

.hc-np-paginator .p-paginator .p-paginator-first:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-prev:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-next:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-last:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-pages .p-paginator-page:hover {
  background: var(--np-accent-light) !important;
  color: var(--np-accent) !important;
  border-color: var(--np-accent-ring) !important;
}

.hc-np-paginator .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
  background: var(--np-accent) !important;
  color: #ffffff !important;
  border-color: var(--np-accent) !important;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3) !important;
  font-weight: 700 !important;
}

.hc-np-paginator .p-paginator .p-paginator-current {
  font-family: var(--np-font) !important;
  font-size: 0.8125rem !important;
  color: var(--np-text-muted) !important;
  padding: 0 0.75rem !important;
  border: none !important;
  background: transparent !important;
}

/* ─────────────────────────────────────────────────────────
   CONFIRM DIALOG (delete)
   ───────────────────────────────────────────────────────── */
.p-confirm-dialog.p-dialog {
  border-radius: 14px !important;
  border: 1.5px solid var(--np-border) !important;
  box-shadow: var(--np-shadow-lg) !important;
  font-family: var(--np-font) !important;
}

.p-confirm-dialog .p-dialog-header {
  border-radius: 12px 12px 0 0 !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid var(--np-border-light) !important;
  background: var(--np-card) !important;
}

.p-confirm-dialog .p-dialog-content {
  padding: 1.25rem 1.5rem !important;
  font-family: var(--np-font) !important;
  font-size: 0.9375rem !important;
  color: var(--np-text-secondary) !important;
  background: var(--np-card) !important;
}

.p-confirm-dialog .p-dialog-footer {
  padding: 1rem 1.5rem !important;
  border-radius: 0 0 12px 12px !important;
  border-top: 1px solid var(--np-border-light) !important;
  background: var(--np-card) !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.75rem !important;
}

.p-confirm-dialog .p-confirm-dialog-accept.p-button-danger {
  font-family: var(--np-font) !important;
  background: #ef4444 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background var(--np-duration) !important;
}

.p-confirm-dialog .p-confirm-dialog-accept.p-button-danger:hover {
  background: #dc2626 !important;
}

.p-confirm-dialog .p-confirm-dialog-reject {
  font-family: var(--np-font) !important;
  background: var(--np-border-light) !important;
  color: var(--np-text-secondary) !important;
  border: 1.5px solid var(--np-border) !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all var(--np-duration) !important;
}

.p-confirm-dialog .p-confirm-dialog-reject:hover {
  background: var(--np-border) !important;
  color: var(--np-text-primary) !important;
}

/* ─────────────────────────────────────────────────────────
   STAGGERED ANIMATION FOR ITEMS
   ───────────────────────────────────────────────────────── */
.hc-np-item:nth-child(1) {
  animation-delay: 0.04s;
}

.hc-np-item:nth-child(2) {
  animation-delay: 0.08s;
}

.hc-np-item:nth-child(3) {
  animation-delay: 0.12s;
}

.hc-np-item:nth-child(4) {
  animation-delay: 0.16s;
}

.hc-np-item:nth-child(5) {
  animation-delay: 0.2s;
}

.hc-np-item:nth-child(6) {
  animation-delay: 0.24s;
}

.hc-np-item:nth-child(7) {
  animation-delay: 0.28s;
}

.hc-np-item:nth-child(8) {
  animation-delay: 0.32s;
}

.hc-np-item:nth-child(9) {
  animation-delay: 0.36s;
}

.hc-np-item:nth-child(10) {
  animation-delay: 0.4s;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hc-notifications-page {
    padding: 1.25rem 1rem 3rem;
  }
  .hc-np-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }
  .hc-np-title {
    font-size: 1.25rem;
  }
  .hc-np-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hc-np-tabs {
    width: 100%;
    justify-content: stretch;
  }
  .hc-np-tab {
    flex: 1;
    justify-content: center;
    font-size: 0.8125rem;
    padding: 0.375rem 0.5rem;
  }
  .hc-np-search {
    width: 100%;
  }
  .hc-np-search-input.p-inputtext {
    width: 100% !important;
  }
  .hc-np-item {
    padding: 1rem;
    gap: 0.75rem;
  }
  .hc-np-item-icon {
    width: 40px;
    height: 40px;
  }
  .hc-np-item-icon img {
    width: 40px;
    height: 40px;
  }
  .hc-np-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .hc-np-item-content h4 {
    font-size: 0.875rem;
  }
  .hc-np-item-content p {
    font-size: 0.8125rem;
  }
  .hc-np-item-actions {
    opacity: 1;
    /* always visible on mobile */
  }
  .hc-np-header-right .p-button {
    font-size: 0.75rem !important;
    padding: 0.425rem 0.75rem !important;
  }
}
@media (max-width: 480px) {
  .hc-np-title {
    font-size: 1.125rem;
  }
  .hc-np-item {
    padding: 0.875rem 0.875rem;
  }
  .hc-np-item-icon {
    width: 36px;
    height: 36px;
  }
  .hc-np-paginator .p-paginator .p-paginator-current {
    display: none !important;
  }
}
/* hide orderlist default controls */
.p-orderlist-controls {
  display: none !important;
}

/* remove extra padding */
.p-orderlist-list {
  padding: 0;
  border: none;
}

/* remove item background */
.p-orderlist-item {
  padding: 0;
  border: none;
}

/* remove container border */
.p-orderlist {
  border: none;
}

.p-timeline-event-marker {
  border: 1px solid #a855f7;
  padding: 5px;
  border-radius: 50px;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%) !important;
}

.p-timeline-event-content {
  text-align: left !important;
}

.p-timeline-event-connector {
  border: 1px solid #e5e7eb;
}

.custom-rating .p-rating-icon {
  font-size: 1.2rem;
}

.hc-stage-card {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.hc-stage-card .hc-stage-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(213, 213, 213, 0.2196078431);
  padding: 10px 14px;
  border-radius: 8px 8px 0px 0px;
}

.hc-stage-card .hc-stage-card-date {
  font-size: 0.875rem;
  color: #5a5e7f;
}

.hc-stage-card .hc-stage-card-interviewer {
  font-size: 0.875rem;
  color: #5a5e7f;
}

/* ============================================
   CLIENT FORM LAYOUT
   ============================================ */
.cf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.cf-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.cf-card-icon {
  font-size: 12px;
  color: var(--primary-color, #6366f1);
  background: #ede9fe;
  padding: 10px;
  border-radius: 5px;
}

.cf-card-title {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cf-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  align-items: start;
  padding: 8px 14px;
  gap: 10px;
  border-bottom: 1px solid #f1f5f9;
}
.cf-row:last-child {
  border-bottom: none;
}

.cf-row-label {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  padding-top: 8px;
  white-space: nowrap;
}
.cf-row-label span {
  color: #ef4444;
  margin-left: 2px;
}

.cf-row-field {
  flex: 1;
}
.cf-row-field .p-inputtext,
.cf-row-field .p-dropdown,
.cf-row-field .p-inputtextarea,
.cf-row-field .hc-form-field,
.cf-row-field .hc-form-field .p-dropdown {
  width: 100%;
  font-size: 13px;
  border-radius: 6px;
}

.cf-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.cf-toggle-label {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  min-width: 115px;
}

.cf-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.cf-badge.cf-badge-green {
  background: #dcfce7;
  color: #15803d;
}
.cf-badge.cf-badge-red {
  background: #fee2e2;
  color: #b91c1c;
}

.cf-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

/* Add your customizations of layout here */
* {
  margin: 0;
  padding: 0;
}

.global-tab {
  margin-bottom: 20px;
}

.first-d-crad {
  border: 1px solid #e4e6e9;
  border-radius: 3px;
  padding: 20px;
}

.p-breadcrumb > ul > li.p-breadcrumb-chevron:first-of-type {
  display: none;
}

.p-toolbar {
  padding: 0.571rem 0.571rem;
  border-bottom: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.input-effect-div {
  position: relative;
}

.p-inputtext {
  position: relative;
  background: transparent;
  z-index: 11;
  border: 1px solid rgba(68, 72, 109, 0.17);
}
.p-inputtext:enabled:hover {
  border: 1px solid rgba(68, 72, 109, 0.17);
}
.p-inputtext ~ .focus-bg:before, .p-inputtext ~ .focus-bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  background-color: rgba(68, 72, 109, 0.07);
  transition: 0.3s;
  z-index: 1;
  border-radius: 6px;
}
.p-inputtext ~ .focus-bg:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.p-inputtext:focus ~ .focus-bg:before {
  width: 50%;
  height: 100%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.p-inputtext:focus ~ .focus-bg:after {
  width: 50%;
  height: 100%;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.p-dropdown {
  border: 1px solid rgba(68, 72, 109, 0.17);
  background-color: transparent;
}
.p-dropdown:not(.p-disabled):hover {
  border: 1px solid rgba(68, 72, 109, 0.17);
}

.p-column-filter-menu-button.p-column-filter-menu-button-active {
  color: #fff !important;
}

.p-fileupload .p-fileupload-content {
  padding: 1rem 1rem;
}

.notify-text {
  font-size: 12px;
}

.div-h {
  font-size: 20px;
}

.border-violet {
  border-color: #9785c2 !important;
}

.border-green {
  border-color: #98b433 !important;
}

.border-blue {
  border-color: #5d9ed3 !important;
}

.border-red {
  border-color: #ec8686 !important;
}

.border-yellow {
  border-color: #fbc02d !important;
}

.border-purple {
  border-color: #cb7cc0 !important;
}

.border-aqua {
  border-color: #64c3d1 !important;
}

.border-brown {
  border-color: #c2b89d !important;
}

.p-multiselect:not(.p-disabled):hover {
  border-color: rgba(68, 72, 109, 0.17);
}

.multiselect-custom {
  border: 1px solid rgba(68, 72, 109, 0.17);
  background: #fff;
}

.notifiction-icon {
  cursor: pointer;
  margin-top: 5px;
}
.notifiction-icon i {
  color: #cfcfcf;
  font-size: 18px;
  cursor: pointer;
}
.notifiction-icon ul {
  position: absolute;
  right: 10%;
  min-width: 12rem;
  animation-duration: 0.5s;
  list-style-type: none;
  margin: 0;
  z-index: 1;
  padding: 8px 0px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.12) !important;
  top: 40px;
  max-height: 300px;
  height: auto;
  width: 350px;
  overflow-y: scroll;
  border-radius: 4px;
}
.notifiction-icon ul li {
  padding: 8px 16px;
}
.notifiction-icon ul li i {
  color: #000;
  font-size: 16px;
}
.notifiction-icon ul .empty {
  height: auto;
}

.college-name-div {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: start;
}

.p-button-custom-tooltip {
  background-color: transparent;
  color: #44486D;
  border: none;
  box-shadow: none !important;
  padding: 0;
}
.p-button-custom-tooltip:enabled:hover {
  background-color: transparent;
  color: #44486D;
  border: none;
  box-shadow: none !important;
}

.team-s-e {
  font-size: 13px;
}

.p-invalid-txt {
  display: flex;
  color: #FC6161;
  font-size: 14px;
}

.p-calendar .p-inputtext {
  width: 100% !important;
  flex: 1 0.5 auto !important;
}
.p-calendar .p-button.p-button-icon-only {
  width: 3rem;
}

.p-invalid .ql-toolbar.ql-snow,
.p-invalid .p-editor-content.ql-snow,
.p-invalid .p-fileupload-buttonbar,
.p-invalid .p-fileupload-content {
  border: 1px solid #FC6161;
}

.p-datepicker {
  background: #fff !important;
}

.p-editor-container .p-editor-content {
  height: 220px;
}

.p-badge {
  font-size: 0.8rem;
}

.p-avatar {
  min-width: 2rem;
}

.delete-dialog-note {
  color: #ff3131;
  font-size: 16px;
}

.delete-triangle {
  font-size: 2rem;
  color: #ff3131;
}

.custom-tooltip-emp {
  background-color: #4b5563;
  z-index: 11;
  color: #fff;
  text-align: center;
}
.custom-tooltip-emp .tooltip-text {
  margin: 0 10px;
}

.p-input-icon-right > i:last-of-type {
  z-index: 1111111 !important;
}

.recrive-pay-card {
  border: 1px solid #ebeaf2;
  padding: 0;
}
.recrive-pay-card .card-header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px;
  background-color: #f9f9fb;
  border-bottom: 1px solid #ebeaf2;
}
.recrive-pay-card .recrive-pay-content .bills-header {
  padding: 16px;
  border-bottom: 1px solid #ebeaf2;
}
.recrive-pay-card .recrive-pay-content .bills-header .payable-bar .p-progressbar-value {
  background: #ffb830;
}
.recrive-pay-card .recrive-pay-content .bills-header .p-progressbar-label {
  display: none;
}
.recrive-pay-card .recrive-pay-content .t-amt {
  padding: 16px;
  display: flex;
}
.recrive-pay-card .recrive-pay-content .t-amt .right-div {
  border-left: 1px solid #ebeaf2;
}
.recrive-pay-card .recrive-pay-content .t-amt .right-div .unpaid-amt-text {
  color: #f76831;
  text-transform: uppercase;
}
.recrive-pay-card .recrive-pay-content .t-amt .paid-amt-text {
  color: #408dfb;
  text-transform: uppercase;
}

.new-overview-boxes .widget-overview-box {
  max-height: 175px;
  height: auto;
}

.widget-overview-box.total-count-card {
  box-shadow: 1px 2px 1px 2px #d8dde6;
}
.widget-overview-box img {
  position: relative;
  bottom: 0;
  right: 0;
}
.widget-overview-box .overview-text {
  font-size: 22px;
}
.widget-overview-box .overview-text-h {
  font-size: 16px;
  color: #000;
}
.widget-overview-box .overview-text-h.upcoming-holidays {
  font-weight: 600;
  font-size: 14px;
}
.widget-overview-box .overview-text-h.inner-holiday-text {
  font-size: 14px;
}
.widget-overview-box .overview-title {
  font-size: 14px;
}
.widget-overview-box .holiday-name {
  font-size: 13px;
  color: #000;
}
.widget-overview-box .holidaye-date {
  font-size: 12px;
}
.widget-overview-box .remote-div img {
  position: relative;
  width: 100px;
  bottom: auto;
  right: auto;
}
.widget-overview-box.dashboard-leave-card {
  margin-top: 24px;
  max-height: 200px;
  height: auto;
  overflow: hidden;
  overflow-y: scroll;
}
.widget-overview-box.dashboard-leave-card::-webkit-scrollbar {
  display: none;
}
.widget-overview-box.dashboard-leave-card .overview-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 83px;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div .emp-name {
  font-size: 12px;
  text-align: center;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div .p-avatar.p-avatar-image {
  position: relative;
}
.widget-overview-box.dashboard-leave-card .overview-details .avatar-div .p-avatar.p-avatar-image img {
  position: initial;
}

.widget-table .overview-text-h,
.widget-revenue-graph .overview-text-h,
.widget-performance .overview-text-h {
  color: #000;
}

.p-dialog-content {
  padding: 20px !important;
  flex-grow: 1;
}

.role-management .role-checkbox {
  text-transform: capitalize;
}
.role-management .role-table {
  border: 1px solid rgba(68, 72, 109, 0.168627451);
  padding: 0;
}
.role-management .role-table .inner-row {
  border-bottom: 1px solid rgba(68, 72, 109, 0.168627451);
  padding: 0;
}
.role-management .role-table .inner-row:last-child {
  border-bottom: none;
}
.role-management .role-table .inner-row .action-r {
  padding: 0;
  margin: 0;
}
.role-management .role-table .left-menu {
  border-right: 1px solid rgba(68, 72, 109, 0.168627451);
  display: flex;
  align-items: center;
}
.role-management .role-table .role-items {
  border-right: 1px solid rgba(68, 72, 109, 0.168627451);
}
.role-management .role-table .role-items.check-all-new {
  border-top: 1px solid rgba(68, 72, 109, 0.168627451);
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item {
  text-transform: capitalize;
}

.user-management-toolbar {
  border-bottom: 1px solid rgba(68, 72, 109, 0.17);
}

.p-dropdown-panel {
  background-color: #fff;
}

.p-dropdown.new-options .p-dropdown-items-wrapper ul li .p-dropdown-item {
  background-color: #007bff !important;
}
.p-dropdown.new-options .p-dropdown-items-wrapper ul li:last-child.p-dropdown-item {
  background-color: #007bff !important;
}

.total-card {
  background-color: #f9f9fb;
  margin-left: 23px;
  width: 40% !important;
  margin-right: 6%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.total-card.invoice {
  margin-right: 0%;
}

.discount-input {
  background: #fff;
  border-right: none;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.discount-drp {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.discount-drp .p-dropdown-trigger {
  width: 1.5rem;
}
.discount-drp .p-dropdown-trigger .p-dropdown-trigger-icon {
  font-size: 12px;
}

.top-p-avatar img {
  border: 2px solid;
}

.login-body {
  justify-content: center;
  align-items: center;
}
.login-body .login-panel {
  padding: 0px;
  min-height: 70vh;
  background-image: none;
  background: #ffffff;
  width: 30%;
  margin: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.login-body .login-panel .logo-container {
  padding: 20px;
}
.login-body .login-panel .logo-container .login-logo {
  width: 185px;
  margin-bottom: 20px;
}
.login-body .login-panel .button-container button {
  min-width: 270px;
  margin-top: 20px;
  max-width: 100%;
}

.p-toggleable-content-enter-active {
  height: auto;
}

.p-toggleable-content-exit-active {
  height: 0;
}

.p-toggleable-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.layout-wrapper.layout-slim .layout-menu-wrapper {
  overflow: visible;
  z-index: 999;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  display: flex;
  align-items: center;
  background: #273143;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .menu-logo {
  padding: 0px 0px 0px 0px;
  min-height: 4em;
  width: 100%;
  background-color: #273143;
  align-items: center;
  justify-content: center;
  border-right: 1px solid;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container {
  overflow: auto;
  flex: 1 1;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu {
  overflow: unset;
  padding: 0px;
  margin: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li {
  position: unset;
  padding: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a {
  background-color: #394253;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem ul li a i {
  font-size: 14px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 12px 8px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: #394253 !important;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover i {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover span {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: #a2a9b4;
  font-size: 18px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a.active-route {
  background-color: #394253;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a.active-route i {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a.active-route span {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a span {
  display: block;
  font-size: 10px;
  color: #a2a9b4;
  margin-top: 8px;
  font-weight: 700;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-text {
  margin-left: 0px;
  text-align: center;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > ul {
  display: block;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem:first-child {
  margin-top: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul {
  position: absolute;
  left: 5rem;
  top: 0;
  min-width: 15rem;
  background: #394253;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  max-height: 20rem;
  overflow: auto;
  z-index: 999;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a {
  min-height: auto;
  align-items: start;
  padding: 6px 0px;
  color: #a2a9b4;
  font-weight: 600;
  font-size: 13px;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a:hover {
  color: #fff;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a i .layout-menuitem-icon {
  display: none;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a span {
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
  text-align: start;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > ul li a span.layout-menuitem-text {
  text-align: start;
}
.layout-wrapper.layout-slim .layout-menu-wrapper .layout-menu-container .layout-menu ul {
  display: none;
}
.layout-wrapper .layout-topbar {
  position: fixed;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #273143;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.layout-wrapper .layout-topbar .layout-topbar-left {
  display: block;
  margin-left: 7.587rem;
}
.layout-wrapper .layout-topbar .layout-topbar-left .product-name {
  color: #fff;
}
.layout-wrapper .layout-topbar .layout-topbar-right {
  display: block;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items {
  justify-content: end;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul {
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12), 0 4px 4px 0 rgba(0, 0, 0, 0.24);
  top: 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 8px 0px;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul button {
  padding: 0 10px;
  margin: 0;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li.active-topmenuitem > ul button:hover {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.layout-wrapper .layout-topbar .layout-topbar-right .layout-topbar-right-items > li button {
  width: 100%;
}
.layout-wrapper .layout-main .layout-main-content {
  padding-top: 60px;
}

.status {
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0.25em 0.5rem;
  text-transform: uppercase;
  max-width: 80px;
  margin-top: 0px;
  text-align: center;
}

.status-inactive {
  background: #ffcdd2;
  color: #c63737;
}

.status-active {
  background: #c8e6c9;
  color: #256029;
}

.imageupload .p-button.p-button-icon-only {
  padding: 7px !important;
}

.main-img-box {
  max-width: 50px;
  max-height: 50px;
  width: 50px;
  height: 50px;
}
.main-img-box img {
  width: 100%;
  height: 100%;
}

.expanded-table .p-datatable {
  border: 1px solid rgba(68, 72, 109, 0.17);
}

.card {
  position: relative;
}
.card .card-footer {
  display: flex;
  justify-content: end;
  width: 100%;
}
.card .card-footer .button-group {
  display: flex;
  padding: 10px;
}
.card .card-footer .button-group .p-button {
  min-width: 100px;
  padding: 10px;
}

.upper-layer {
  z-index: 1100;
  min-height: 400px;
  overflow: hidden;
  opacity: 0.8;
  margin: auto;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(214, 211, 211);
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upper-layer img {
  height: 75px;
  width: 75px;
}

.badgeLeave {
  background: #cb7cc0;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.badgeWeekLeave {
  background: #7c89cb;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.badgeOther {
  background: #c2b89d;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.custom-datepicker {
  background-color: #fff;
  border: 1px solid #d8dde6;
  padding: 10px;
  color: #000;
  cursor: pointer;
}

.selected-option-btn {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12), 0 4px 4px 0 rgba(0, 0, 0, 0.24);
  padding: 10px 10px;
  z-index: 11111;
  inset: 100% 0px auto auto;
  width: 225px;
}
.selected-option-btn button {
  background-color: #fff;
  border: 0;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

.general-tab {
  margin-right: -30px;
  margin-left: -30px;
  margin-top: -3px;
  background-color: #fff;
  box-shadow: 3px 0 6px 0 #d8dde6;
  border-bottom: 1px solid #dee2e6;
  border-color: #e4e6e9;
  position: relative;
}
.general-tab .p-tabmenu-nav {
  border: none;
  padding: 0 20px;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem {
  margin-right: 1rem;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
  color: #333;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link::after {
  left: 40%;
  opacity: 1;
  border-bottom-color: #2986ce;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
  padding: 13px 10px;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid;
  border-left: 7px solid transparent;
  opacity: 0;
}
.general-tab .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-text {
  text-transform: uppercase;
  font-size: 12px;
}
.general-tab.inner-tab {
  box-shadow: none;
  margin-top: 0;
  background-color: #fefefe;
  position: unset;
  margin-bottom: 16px;
}
.general-tab.inner-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight {
  border-bottom: 2px solid #333;
}
.general-tab.inner-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
  border-color: #333;
}
.general-tab.inner-tab .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link::after {
  display: none;
}
.general-tab.inner-tab.datatable-tab {
  margin-right: 0;
  margin-left: 0;
  border: none;
}
.general-tab.inner-tab.datatable-tab .p-tabmenu-nav {
  padding: 0;
  border-bottom: 1px solid rgba(68, 72, 109, 0.17);
}
.general-tab.inner-tab.cnf-invoice-tab {
  padding: 3px 20px;
  border-bottom: none;
}
.general-tab.inner-tab.cnf-invoice-tab .p-tabview-nav {
  border: none;
}
.general-tab.inner-tab.cnf-invoice-tab .p-tabview-nav li.p-highlight .p-tabview-nav-link {
  color: #333;
}
.general-tab.inner-tab.cnf-invoice-tab .p-tabview-panels {
  padding: 0;
}

.layout-footer .footer-logo {
  vertical-align: middle;
}
.layout-footer .white-txt {
  color: #ffffff;
}
.layout-footer .black-txt {
  color: #44486D;
}

.tool-tip {
  color: #fff;
  border-radius: 12px;
  margin: 20px !important;
}

.address-cell {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-datatable-emptymessage td {
  text-align: center !important;
  padding: 20px 0px !important;
}

.editImage .edit-img-box {
  width: 100px;
  height: 100px;
}
.editImage .edit-img-box img {
  width: 70%;
  height: 70%;
}

.view-img-box {
  width: 120px;
  height: 120px;
}
.view-img-box img {
  width: 100%;
  height: 100%;
}

.p-datatable {
  overflow: auto !important;
}
.p-datatable .p-datatable-thead tr {
  background-color: rgba(68, 72, 109, 0.07);
}
.p-datatable .p-datatable-thead tr th {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.p-datatable .p-datatable-tbody tr td {
  font-size: 12px;
  font-weight: 500;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions .p-button.p-button-icon-only {
  width: 2rem;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions .p-button.p-button-icon-only.p-button-rounded {
  height: 2rem;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody .actions .p-button .p-button-icon {
  font-size: 12px;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody tr {
  border-bottom: 1px solid rgba(68, 72, 109, 0.17);
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-thead .p-column-header-content .p-sortable-column-icon {
  font-size: 12px;
}
.p-datatable .p-datatable-wrapper .p-datatable-table .p-datatable-thead .p-column-header-content .p-column-filter .pi-filter-icon {
  font-size: 12px;
}
.p-datatable.p-datatable-striped .p-datatable-tbody .p-row-odd {
  background: #f8f8fa !important;
}
.p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover {
  background: #f9fafb;
}
.p-datatable .p-sortable-column {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover {
  color: #374151;
}
.p-datatable .p-datatable-tfoot tr td {
  color: #333;
  font-weight: 600;
}

.fas {
  color: #676B89;
}

i {
  color: #676B89;
}

.layout-wrapper.layout-sidebar .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: #676B89;
}

@media screen and (max-width: 960px) {
  .crud-demo .p-datatable {
    overflow: auto !important;
  }
  .crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tbody > tr > td {
    display: revert !important;
    width: auto !important;
  }
  .crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tbody > tr > td > .p-column-title {
    display: none !important;
  }
}
.attendence .p-toolbar {
  border-bottom: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.crud-demo .p-datatable .p-datatable-wrapper .p-datatable-thead > tr > th {
  display: revert !important;
  padding: 0.5rem;
}
.crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tfoot > tr > td {
  display: revert !important;
}
.crud-demo .p-datatable .p-datatable-wrapper .p-datatable-tbody > tr > td {
  width: auto !important;
  padding: 0.5rem;
}
.crud-demo .upper-card-area {
  display: flex;
  gap: 20px;
}
.crud-demo .card-column .div-h {
  color: #000;
  font-weight: 500;
}
.crud-demo .card-column .inner-attendence-card {
  background-color: #f3f3f3;
  border: 1px solid #e4e6e9 !important;
  min-height: 143px;
  border-radius: 3px;
}
.crud-demo .card-column .inner-attendence-card.second {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.crud-demo .card-column .inner-attendence-card.second .day-name {
  display: flex;
  gap: 8px;
}
.crud-demo .card-column .inner-attendence-card.second .day-name .p-badge {
  font-size: 10px;
  background-color: transparent;
  border: 1px solid rgba(68, 72, 109, 0.17);
  color: #44486D;
}
.crud-demo .card-column .inner-attendence-card.second .day-name .p-badge.active-b {
  background-color: #64c3d1;
  color: #fff;
  border: 1px solid #64c3d1;
}
.crud-demo .card-column .inner-attendence-card.second .day-name .attendence-icon i {
  font-size: 16px;
}
.crud-demo .card-column .inner-attendence-card.second .day-progress .today {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}
.crud-demo .card-column .inner-attendence-card.second .day-progress .duration {
  font-size: 10px;
  margin-top: 8px;
}
.crud-demo .card-column .inner-attendence-card.second .day-progress .p-progressbar-determinate .p-progressbar-label {
  display: none;
}
.crud-demo .card-column .inner-attendence-card .p-calender {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.crud-demo .card-column .inner-attendence-card .p-calender .p-datepicker {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.crud-demo .card-column .inner-attendence-card .p-datepicker-inline {
  overflow-x: visible !important;
}
.crud-demo .card-column .inner-attendence-card .p-datepicker-inline.p-datepicker-multiple-month .p-datepicker-group-container {
  position: relative;
  z-index: 111;
  filter: drop-shadow(2px 4px 6px #c9c7c7);
  -webkit-filter: drop-shadow(2px 4px 6px #c9c7c7);
}
.crud-demo .card-column .inner-attendence-card .p-dropdown {
  background: transparent;
}
.crud-demo .card-column .inner-attendence-card .p-datepicker-group {
  background-color: #fff;
  padding: 10px;
}
.crud-demo .card-column .inner-attendence-card .card-t-label {
  color: #777;
  font-size: 12px;
  text-transform: uppercase;
}
.crud-demo .card-column .inner-attendence-card .card-t-label.leave {
  font-size: 12px;
}
.crud-demo .card-column .inner-attendence-card .card-t-header .c-secondary-h {
  font-size: 18px;
  color: #222222;
}
.crud-demo .card-column .inner-attendence-card .card-t-header .icons-u {
  background-color: #387cf7;
  padding: 5px 6px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
}
.crud-demo .card-column .inner-attendence-card .card-t-header .icons-u i {
  color: #ffffff;
}
.crud-demo .card-column .inner-attendence-card .clock-div {
  margin-top: 7px;
}
.crud-demo .card-column .inner-attendence-card .clock-div .live-clock {
  border: 1px solid rgba(68, 72, 109, 0.17);
  padding: 6px;
  font-size: 16px;
}
.crud-demo .card-column .inner-attendence-card .clock-div .today-date {
  margin-top: 14px;
  font-size: 12px;
}
.crud-demo .card-column .inner-attendence-card .right-option {
  margin-left: 40px;
}
.crud-demo .card-column .inner-attendence-card .right-option p {
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #387cf7;
  margin-bottom: 0.3rem;
}

.profile-page .profile-card {
  border: 1px solid #e4e6e9;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 0px;
}
.profile-page .profile-card .p-highlight {
  background-color: #387cf7;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.profile-page .profile-card .p-highlight .name-p {
  color: #ffffff;
  font-size: 50px;
}
.profile-page .profile-card .p-other-info {
  width: 100%;
}
.profile-page .profile-card .p-other-info .full-n-p {
  font-size: 24px;
}
.profile-page .profile-card .p-other-info .personal-info {
  border-bottom: 1px solid transparent;
  padding: 16px 0px;
}

.profile-tab .p-tabview-nav {
  border: 0px;
  background-color: #ffffff;
  box-shadow: 3px 0 6px 0 #d8dde6;
  border: 1px solid #e4e6e9;
  border-top: 0;
  padding: 0px 16px;
}
.profile-tab .p-tabview-nav li.p-highlight .p-tabview-nav-link {
  border: none;
}
.profile-tab .p-tabview-nav li .p-tabview-nav-link {
  padding: 1rem 0.429rem;
}
.profile-tab .p-tabview-nav .p-tabmenuitem .p-menuitem-link {
  border: 0px;
  padding: 1rem 0.429rem;
}

.profile-leave-page .leave-balance {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.profile-leave-page .profile-d-card {
  border: 1px solid #e4e6e9;
  border-radius: 3px;
  min-height: 350px;
  padding: 0px;
}
.profile-leave-page .profile-d-card.document-card {
  min-height: auto;
}
.profile-leave-page .profile-card-title {
  padding: 16px;
  margin-bottom: 12px;
}
.profile-leave-page .profile-card-title:first-child {
  border-bottom: 1px solid #e4e6e9;
}
.profile-leave-page .profile-leave-data {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-leave-page .employee-leave {
  border-top: 1px solid #e4e6e9;
  flex-wrap: wrap;
}
.profile-leave-page .employee-leave .inner-data {
  border-right: 1px solid #e4e6e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
.profile-leave-page .employee-leave .inner-data h6 {
  font-size: 16px;
  margin-top: 6px;
}
.profile-leave-page .employee-leave .inner-data label {
  color: #777777;
  font-size: 12px;
}
.profile-leave-page .employee-leave .inner-data:last-child {
  border-right: 0;
}
.profile-leave-page.pending-leave-data .card {
  margin-bottom: 0px;
}
.profile-leave-page.pending-leave-data .profile-d-card {
  min-height: auto;
  padding: 0px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.profile-leave-page.pending-leave-data .profile-d-card .pending-leave {
  padding: 20px;
  border-bottom: 1px solid #e4e6e9;
}
.profile-leave-page.pending-leave-data .profile-d-card .pending-leave:last-child {
  border-bottom: 0;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data h6 {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 400;
  color: #000;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data label {
  color: #777777;
  font-size: 12px;
  text-transform: uppercase;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data.icon-div {
  display: flex;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data.icon-div .clock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border: 1.5px solid #387cf7;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.profile-leave-page.pending-leave-data .profile-d-card .inner-data.icon-div .clock-icon i {
  color: #387cf7;
  font-size: 16px;
}
.profile-leave-page.pending-leave-data .profile-d-card.request-leave-div {
  min-height: 81px;
  padding: 20px;
}
.profile-leave-page.leave-stat .profile-d-card {
  min-height: auto;
  padding: 16px;
}
.profile-leave-page.about-page .profile-d-card {
  min-height: 238px;
  padding-bottom: 16px;
}
.profile-leave-page.about-page .profile-d-card.document-card {
  min-height: auto;
}
.profile-leave-page.about-page .employee-leave {
  border-top: unset;
}
.profile-leave-page.about-page .employee-leave .inner-data {
  border-right: unset;
  align-items: start;
  padding: 8px 16px;
}

.assign-dialog .p-dialog-footer {
  border: 1px solid rgba(68, 72, 109, 0.168627451);
  padding-top: 10px;
}

.p-dialog .p-dialog-header {
  background: #fff;
  border-bottom: 1px solid rgba(68, 72, 109, 0.168627451);
}
.p-dialog .p-dialog-content {
  background: #fff;
}
.p-dialog .p-dialog-footer {
  background: #fff;
}
.p-dialog.all-sidebar {
  height: 100%;
  max-height: 100%;
  margin: 0 !important;
}
.p-dialog.all-sidebar .p-dialog-header {
  border-top-right-radius: 0px;
  border-top-left-radius: 5px;
  border-bottom: 1px solid #8A8EA6;
  padding: 1rem 1.714rem;
  color: #000;
}
.p-dialog.all-sidebar .p-dialog-footer {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 5px;
}

select {
  border: 1px solid rgba(68, 72, 109, 0.17);
  background: transparent;
  padding: 6px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.custom-range-label option:nth-child(4) {
  display: none;
}

.kra-main-tabs {
  padding: 16px;
}
.kra-main-tabs .kra-left-card {
  padding-right: 30px;
}
.kra-main-tabs .kra-right-card {
  margin-top: 40px;
  padding-left: 40px;
  border-left: 1px solid #e4e6e9;
}
.kra-main-tabs .kra-right-card .kra-status .status-green {
  background-color: #86c06a;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-orange {
  background-color: #fbc02d;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-red {
  background-color: #fa5f5f;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-gray {
  background-color: #b4bac5;
}
.kra-main-tabs .kra-right-card .kra-status .status-green.status-blue {
  background-color: #5d9ed3;
}
.kra-main-tabs .kra-right-card .kra-status .status-name {
  font-size: 13px;
  color: #222222;
  font-weight: 400;
}
.kra-main-tabs .kra-right-card .kra-status .status-name span {
  font-weight: 600;
}
.kra-main-tabs .kra-right-card .kra-status .count-kras {
  font-size: 12px;
}

.p-multiselect-panel {
  background-color: #fff;
}

/* Container styling */
.search-bar {
  display: inline-flex;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 5px 13px;
  width: 40px;
  /* Initial width */
  overflow: hidden;
  transition: width 0.4s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
}
.search-bar .p-inputtext:enabled:hover {
  border: unset;
}

/* Expand the container on hover or focus */
.search-bar:hover,
.search-bar:focus-within {
  width: 200px;
  /* Expanded width */
}

/* Icon styling */
.search-bar i {
  color: #333;
  margin-right: 5px;
  transition: color 0.3s ease;
}

/* Optional: Change icon color on hover */
.search-bar:hover i {
  color: #a855f7;
  /* Light blue icon color */
}

/* Input styling */
.search-input {
  border: none;
  outline: none;
  background: transparent;
  width: 0;
  opacity: 0;
  font-size: 14px;
  transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Make the input visible when expanded */
.search-bar:hover .search-input,
.search-bar:focus-within .search-input {
  width: 100%;
  opacity: 1;
}

.upload-box {
  display: flex;
  align-items: center;
  border: 1px dashed rgba(68, 72, 109, 0.3);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  color: #44486D;
  font-size: 1rem;
}
.upload-box input.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-preview {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  min-width: 60%;
  width: auto;
}
.file-preview .file-info {
  flex-grow: 1;
}
.file-preview .file-info .file-name {
  display: block;
  font-weight: bold;
  color: #387cf7;
}
.file-preview .file-info .file-details {
  font-size: 0.85rem;
  color: #666;
}
.file-preview .file-delete {
  color: #d9534f;
  cursor: pointer;
  font-size: 1.2rem;
}
.file-preview .file-delete:hover {
  color: #c9302c;
}

.doc-viewer-container {
  margin-top: 20px;
}
.doc-viewer-container iframe {
  border: none;
  width: 100%;
  height: 500px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.details-grid .details-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.details-grid .details-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.details-grid .details-card .card-content p {
  margin-bottom: 0.75rem;
}
.details-grid .details-card .card-content p .label {
  font-weight: bold;
  color: #555;
  margin-right: 0.5rem;
}
.details-grid .details-card .card-content .document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details-grid .details-card .card-content .document-row .action-button {
  display: flex;
  align-items: center;
  color: #007bff;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}
.details-grid .details-card .card-content .document-row .action-button:hover {
  text-decoration: underline;
}
.details-grid .details-card .card-content .document-row .action-button i {
  margin-right: 0.25rem;
  font-size: 1rem;
}
.details-grid .profile-picture {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details-grid .profile-picture .picture-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.details-grid .profile-picture .picture-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.details-grid .profile-picture .picture-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: bold;
}

.attendence-summary .attendance-stat .attendance-stat-card {
  background-color: #fff;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  min-height: 92px;
}
.attendence-summary .attendance-stat .attendance-stat-card .attendance-data {
  border-left: 3px solid;
  padding-left: 16px;
}
.attendence-summary .attendance-stat .attendance-stat-card .attendance-data p {
  color: #333;
  font-weight: 500;
}
.attendence-summary .attendance-stat .attendance-stat-card .attendance-data h3 {
  color: #333;
  font-weight: 600;
}
.attendence-summary .common-past-data {
  padding-top: 20px;
}
.attendence-summary .common-past-data .header-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.attendence-summary .common-past-data .header-data h4 {
  font-size: 16px;
  color: #333;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav {
  border-bottom: transparent;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li.p-tabview-selected.p-highlight .past-dates-header {
  border-color: #2986ce;
  background-color: #d6e8f7;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header {
  background-color: #fff;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data h6 {
  font-size: 28px;
  color: #222222;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data .inner-icon-div {
  background-color: rgba(152, 180, 51, 0.2);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data .inner-icon-div i {
  color: #86c06a;
  font-size: 10px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present {
  margin-top: 12px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present .inner-icon-div {
  background-color: rgba(203, 124, 192, 0.2);
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present .inner-icon-div i {
  color: #6f42c1;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present .emp {
  font-size: 14px;
  color: #222222;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-nav li .past-dates-header .per-data.present p {
  font-size: 11px;
  margin-left: 32px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels {
  padding-top: 2rem;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card {
  padding: 0;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 16px;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h h6 {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
}
.attendence-summary .common-past-data .past-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .p-chart {
  padding: 16px;
}
.attendence-summary .common-past-data.analytics {
  padding-top: 0;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header {
  padding-bottom: 20px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header h3 {
  color: #000;
  font-weight: 500;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header .p-dropdown {
  background: #fff;
  border-radius: 0;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header .p-dropdown .p-dropdown-label {
  margin-top: 3px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .most-hours-worked-header .p-dropdown .p-dropdown-label.p-placeholder {
  margin-top: 3px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav {
  background-color: #fff;
  border-bottom: none;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav li {
  padding: 8px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav li:hover .p-tabview-nav-link {
  border-color: transparent;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav .p-tabview-selected.p-highlight {
  background-color: #d6e8f7;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-nav .p-tabview-selected.p-highlight .p-tabview-nav-link {
  border: none;
  color: #333;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels {
  padding-top: 20px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card {
  padding: 0;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .avg-hours {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .avg-hours .count-hours p {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .avg-hours .count-hours span {
  font-size: 12px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 16px;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .chart-h h6 {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
}
.attendence-summary .common-past-data.analytics .analytics-tabs .p-tabview .p-tabview-panels .p-tabview-panel .card.chart-time .p-chart {
  padding: 16px;
}

.custom-table {
  text-align: center;
  width: 40%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #dee2e6;
}
.custom-table thead tr th {
  border-bottom-width: 2px;
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
  padding: 0.75rem;
}
.custom-table tr th {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}
.custom-table tr td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}

.avatar-div .link-name {
  text-decoration: underline;
  color: #2986ce;
}
.avatar-div .link-name .plain-button {
  background: transparent;
  border: none;
  box-shadow: 0px 0px 0px 0px;
  text-decoration: underline;
  color: #2986ce;
  font-size: 12px;
}

.reports .card {
  padding: 0;
  border: 1px solid #ebedf6;
  box-shadow: 0 5px 10px 0 #f1f1fa;
  padding-bottom: 30px;
}
.reports .card .header {
  color: #000;
  padding: 10px 16px;
}
.reports .card .p-datatable-table .p-datatable-thead tr {
  border-top: 1px solid rgba(68, 72, 109, 0.17);
}
.reports .card .p-datatable-table .p-datatable-thead tr th {
  padding: 0.5rem 16px !important;
}
.reports .card .p-datatable-table .p-datatable-tbody tr td {
  padding: 0.5rem 16px !important;
}
.reports .card .p-datatable-table .p-datatable-tbody .p-rowgroup-header .p-rowgroup-header-name span {
  color: #000;
  font-size: 14px;
}
.reports .card .p-datatable-table .p-datatable-tbody .p-rowgroup-header .p-rowgroup-header-name .p-badge {
  color: #fff !important;
}

.amount {
  font-size: 14px;
  font-weight: 500;
}

.area-distribution-table .p-column-filter-menu {
  margin-left: 20px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #949494 transparent;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #949494;
  border-radius: 10px;
  border: 1px solid transparent;
}
*::-webkit-scrollbar-thumb:hover {
  width: thin;
  background-color: transparent;
}

.bg-green-cutome {
  background-color: #69d26e !important;
}

.customer-b-top {
  border-top: 2px solid rgba(68, 72, 109, 0.17);
}

.closing-credit {
  color: red;
}

/* ============================================
   HELICORE LOGIN - FUTURISTIC DESIGN
   ============================================ */
/* Main Container */
.helicore-login-body {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: #000000;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   LEFT SIDE - VISUAL PANEL
   ============================================ */
.helicore-visual-panel {
  display: none;
  width: 50%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .helicore-visual-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.visual-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
}

/* Glowing Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.glow-orb-1 {
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.3);
}

.glow-orb-2 {
  bottom: 33%;
  right: 33%;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.25);
  animation-delay: 1s;
}

.glow-orb-3 {
  top: 50%;
  right: 25%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.2);
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
/* Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
}

/* Logo Showcase */
.logo-showcase {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.logo-visual {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

.logo-visual-2 {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

.logo-glow-ring {
  position: absolute;
  inset: -48px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 3s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  inset: -32px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* Welcome Text */
.welcome-text {
  position: absolute;
  bottom: 64px;
  left: 48px;
  right: 48px;
  z-index: 10;
}

.welcome-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 18px;
  color: #d1d5db;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RIGHT SIDE - LOGIN PANEL
   ============================================ */
.helicore-login-panel {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

@media (min-width: 1024px) {
  .helicore-login-panel {
    width: 50%;
  }
}
.login-panel-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.particle-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: #a855f7;
}

.particle-2 {
  top: 33%;
  right: 33%;
  width: 4px;
  height: 4px;
  background: #3b82f6;
  animation-delay: 0.5s;
}

.particle-3 {
  bottom: 25%;
  left: 33%;
  width: 6px;
  height: 6px;
  background: #06b6d4;
  animation-delay: 1s;
}

.particle-4 {
  top: 66%;
  right: 25%;
  width: 4px;
  height: 4px;
  background: #a855f7;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}
/* Login Form Container */
.login-form-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 10;
}

.form-glow-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 24px;
  filter: blur(60px);
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
}

/* Login Card */
.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .login-card {
    padding: 48px;
  }
}
/* Header */
.login-header {
  text-align: center;
}

.logo-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.login-logo {
  width: 40px;
  height: auto;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.login-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.login-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
  font-weight: 500;
}

/* Form Content */
.form-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Input Groups */
.input-group {
  margin-bottom: 0;
}

.input-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 8px;
  margin-left: 4px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  z-index: 20;
  transition: color 0.3s ease;
}

.input-focused .input-icon {
  color: #a855f7;
}

/* Input Styling */
.helicore-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 14px 16px 14px 44px !important;
  color: #ffffff !important;
  font-size: 14px;
  transition: all 0.3s ease !important;
}

.helicore-input::-moz-placeholder {
  color: #6b7280;
}

.helicore-input::placeholder {
  color: #6b7280;
}

.helicore-input:focus {
  border-color: #a855f7 !important;
  outline: none !important;
}

.helicore-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Password Input */
.helicore-password {
  width: 100%;
  position: relative;
}

.input-wrapper .p-input-icon-right i {
  position: absolute;
  right: 5% !important;
  top: 46% !important;
  font-size: 18px !important;
}

.helicore-password .p-password-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 14px 44px 14px 44px !important;
  color: #ffffff !important;
  font-size: 14px;
  transition: all 0.3s ease !important;
  padding-left: 44px !important;
  padding-right: 44px !important;
}

.helicore-password .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #6b7280;
}

.helicore-password .p-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
  color: #6b7280;
}

.helicore-password .p-password-input::-moz-placeholder {
  color: #6b7280;
}

.helicore-password .p-password-input::placeholder {
  color: #6b7280;
}

.helicore-password .p-password-input:focus {
  border-color: #a855f7 !important;
  outline: none !important;
}

.helicore-password .p-password-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.helicore-password .p-icon {
  color: #6b7280;
  transition: color 0.3s ease;
}

.helicore-password .p-icon:hover {
  color: #a855f7;
}

/* Input Glow Effect */
.input-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 12px;
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* Error Messages */
.error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ef4444 !important;
  font-size: 12px;
  margin-top: 6px;
  margin-left: 4px;
}

.p-invalid {
  border-color: #ef4444 !important;
}

.p-invalid:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3) !important;
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.helicore-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.helicore-checkbox:checked {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-color: transparent;
}

.helicore-checkbox:focus {
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.3);
  outline: none;
}

.checkbox-label {
  color: #9ca3af;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: #d1d5db;
}

.forgot-password-link {
  background: none;
  border: none;
  color: #a855f7;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: #c084fc;
  text-decoration: underline;
}

.forgot-password-link:focus {
  outline: none;
  text-decoration: underline;
}

/* Login Button */
.button-container {
  position: relative;
  margin-top: 8px;
}

.helicore-login-btn {
  width: 100%;
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(76, 64, 143));
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.helicore-login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgb(138, 68, 204), rgb(168, 85, 247), rgb(198, 115, 255));
  transform: scale(1.02);
}

.helicore-login-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.helicore-login-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.helicore-login-btn:focus {
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.5) !important;
  outline: none !important;
}

.button-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(168, 85, 247), rgb(76, 64, 143));
  filter: blur(20px);
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}

/* Footer */
.login-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.support-link {
  background: none;
  border: none;
  color: #a855f7;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #c084fc;
  text-decoration: underline;
}

.support-link:focus {
  outline: none;
  text-decoration: underline;
}

/* PrimeReact Toast Customization */
.p-toast {
  opacity: 0.95 !important;
}

.p-toast .p-toast-message {
  backdrop-filter: blur(10px);
  border-radius: 12px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .login-card {
    padding: 32px 24px;
  }
  .welcome-title {
    font-size: 36px;
  }
  .login-title {
    font-size: 20px;
  }
}
/* Modern Topbar Styles */
.layout-topbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.layout-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-logo {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.topbar-logo:hover {
  transform: scale(1.08);
}

.layout-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Profile Dropdown Styles */
.profile-dropdown-wrapper {
  position: relative;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.profile-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
}

.profile-dropdown-wrapper.active .profile-trigger {
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
}

.profile-avatar {
  width: 30px !important;
  height: 30px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.profile-name {
  font-weight: 500;
  font-size: 0.95rem;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.profile-dropdown-wrapper.active .profile-chevron {
  transform: rotate(180deg);
}

/* Fixed Profile Dropdown */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-info-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-info-role {
  font-size: 0.85rem;
  opacity: 0.8;
}

.profile-dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.5rem 0;
}

.profile-menu-item:hover {
  background: #f3f4f6;
  color: #000000;
}

.profile-menu-item i {
  width: 20px;
  font-size: 1.1rem;
  text-align: center;
}

.logout-item {
  color: #ef4444;
}

.logout-item:hover {
  background: #fef2f2;
  color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
  .layout-topbar-modern {
    padding: 0 1rem;
  }
  .profile-name {
    display: none;
  }
  .topbar-logo {
    height: 35px;
  }
  .profile-dropdown {
    min-width: 260px;
  }
}
@media (max-width: 480px) {
  .topbar-logo {
    height: 30px;
  }
  .profile-dropdown {
    right: -1rem;
  }
}
/* Compact Sidebar Styles */
.layout-sidebar-compact {
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 86px;
  background: #000000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar Content */
.sidebar-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: visible;
  padding: 0.5rem 0;
}

.sidebar-content::-webkit-scrollbar {
  width: 4px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Menu Styles */
.layout-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.layout-root-menuitem {
  margin-bottom: 0.25rem;
  position: relative;
}

.layout-root-menuitem > a,
.layout-root-menuitem > .p-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 4px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.75rem;
  gap: 0.375rem;
  cursor: pointer;
}

.layout-root-menuitem > a::before,
.layout-root-menuitem > .p-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 70%;
  background: #ffffff;
  transition: transform 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.layout-root-menuitem > a:hover,
.layout-root-menuitem > .p-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.layout-root-menuitem > a.active-route,
.layout-root-menuitem > .p-link.active-route {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.layout-root-menuitem > a.active-route::before,
.layout-root-menuitem > .p-link.active-route::before {
  transform: translateY(-50%) scaleY(1);
}

.layout-menuitem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.active-menuitem > a .layout-submenu-toggler,
.active-menuitem > .p-link .layout-submenu-toggler {
  opacity: 1;
}

/* Sidebar Menu Item */
.layout-menuitem {
  position: relative;
  margin: 0.25rem 0;
}

.layout-menuitem-link {
  display: flex;
  align-items: center;
  padding: 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
  position: relative;
  gap: 0.75rem;
  cursor: pointer;
  overflow: hidden;
}
.layout-menuitem-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.layout-menuitem-link:hover .layout-menuitem-icon {
  color: #a855f7;
  transform: scale(1.1);
}
.layout-menuitem-link.active-route, .layout-menuitem-link.active-menuitem-link {
  background: rgba(239, 68, 68, 0.1);
  color: #ffffff;
}
.layout-menuitem-link.active-route::before, .layout-menuitem-link.active-menuitem-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #a855f7;
  border-radius: 0 4px 4px 0;
}
.layout-menuitem-link.active-route .layout-menuitem-icon, .layout-menuitem-link.active-menuitem-link .layout-menuitem-icon {
  color: #a855f7;
}
.layout-menuitem-link.active-route .layout-submenu-toggler, .layout-menuitem-link.active-menuitem-link .layout-submenu-toggler {
  color: #a855f7;
}

.layout-menuitem-icon {
  font-size: 1.2rem;
  min-width: 17px;
  width: 17px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.layout-menuitem-text {
  flex: 1;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0px;
  text-align: center;
}

.layout-submenu-toggler {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
  margin-left: 0;
  flex-shrink: 0;
  width: 16px;
}
.layout-submenu-toggler.active {
  transform: rotate(0deg);
}

/* Popup Submenu Styles */
.layout-submenu-popup {
  position: fixed;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-width: 240px;
  max-width: 280px;
  z-index: 2000;
  animation: submenuSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin-left: 0.5rem;
}

@keyframes submenuSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
/* Submenu Header */
.submenu-header {
  padding: 1rem 1.25rem 0.75rem;
  background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(68, 173, 239, 0.2);
  margin-bottom: 0.5rem;
}
.submenu-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Submenu Items */
.layout-submenu-item {
  margin: 0;
  padding: 0 0.5rem;
}

.layout-submenu-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  gap: 0.875rem;
  position: relative;
  border-radius: 8px;
  font-weight: 500;
}
.layout-submenu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #a855f7;
  transition: height 0.2s ease;
  border-radius: 0 3px 3px 0;
}
.layout-submenu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding-left: 1rem;
}
.layout-submenu-link:hover::before {
  height: 60%;
}
.layout-submenu-link:hover .submenu-icon {
  color: #a855f7;
  transform: translateX(2px);
}
.layout-submenu-link.active-route {
  background: rgba(68, 119, 239, 0.1);
  color: #ffffff;
  font-weight: 600;
}
.layout-submenu-link.active-route::before {
  height: 70%;
}
.layout-submenu-link.active-route .submenu-icon {
  color: #a855f7;
}

.submenu-icon {
  font-size: 0.875rem;
  min-width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}
.submenu-icon.pi-circle-fill {
  font-size: 0.5rem;
}

/* Last item spacing */
.layout-submenu-item:last-child {
  margin-bottom: 0.5rem;
}

/* Hover state for parent menu item when submenu is open */
.active-menuitem > .layout-menuitem-link {
  background: rgba(239, 68, 68, 0.1);
}

/* Animation for submenu items */
.layout-submenu-popup .layout-submenu-item {
  animation: submenuItemSlideIn 0.3s ease forwards;
  opacity: 0;
}

.layout-submenu-popup .layout-submenu-item:nth-child(2) {
  animation-delay: 0.05s;
}

.layout-submenu-popup .layout-submenu-item:nth-child(3) {
  animation-delay: 0.1s;
}

.layout-submenu-popup .layout-submenu-item:nth-child(4) {
  animation-delay: 0.15s;
}

.layout-submenu-popup .layout-submenu-item:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes submenuItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .layout-submenu-popup {
    min-width: 200px;
  }
}
/* Scrollbar for long submenus */
.layout-submenu-popup {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.layout-submenu-popup::-webkit-scrollbar {
  width: 6px;
}
.layout-submenu-popup::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.layout-submenu-popup::-webkit-scrollbar-thumb {
  background: rgba(239, 68, 68, 0.3);
  border-radius: 10px;
}
.layout-submenu-popup::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 68, 68, 0.5);
}

/* Sidebar Layout Fixes */
.layout-sidebar-compact .layout-menu {
  width: 100%;
}
.layout-sidebar-compact .layout-menuitem {
  width: 100%;
}

/* For narrower sidebars */
@media (max-width: 1200px) {
  .layout-menuitem-link {
    padding: 0.875rem 0.5rem;
    gap: 0.5rem;
  }
  .layout-menuitem-text {
    font-size: 0.875rem;
  }
}
/* Badge Styles */
.menu-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 9px;
  font-size: 0.65rem;
  padding: 0 5px;
}

/* Ripple Effect */
.p-ripple {
  position: relative;
  overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .layout-sidebar-compact {
    transform: translateX(-100%);
  }
  .layout-sidebar-compact.sidebar-active {
    transform: translateX(0);
  }
  /* Backdrop for mobile */
  .layout-sidebar-compact.sidebar-active::after {
    content: "";
    position: fixed;
    top: 70px;
    left: 70px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}
/* Scrollbar for Firefox */
.sidebar-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Hover state enhancement */
.layout-root-menuitem {
  cursor: pointer;
}

/* Active state for parent with open submenu */
.active-menuitem > a,
.active-menuitem > .p-link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Submenu positioning adjustment */
.layout-submenu-popup::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #1a1a1a transparent transparent;
}

/* Tooltip-like effect for menu items (optional) */
.layout-root-menuitem > a::after,
.layout-root-menuitem > .p-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  z-index: 1001;
  pointer-events: none;
}

.layout-root-menuitem > a:hover::after,
.layout-root-menuitem > .p-link:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Smooth transitions */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Profile Dropdown Container */
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.75rem;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Profile Header */
.profile-dropdown-header {
  position: relative;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border-radius: 12px 12px 0 0;
  color: #ffffff;
}

.profile-dropdown-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(135deg, #a855f7 0%, #5335d7 100%);
}

.profile-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-info-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.profile-info-role {
  display: flex;
  align-items: center;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #a855f7 0%, #5335d7 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

/* Avatar Styling Override */
.profile-dropdown .p-avatar {
  background: linear-gradient(135deg, #a855f7 0%, #5335d7 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
}

/* Divider */
.profile-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.5rem 1rem;
  list-style: none;
}

/* Menu Items */
.profile-dropdown li[role=menuitem] {
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}

.profile-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: #d1d5db;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  border-radius: 10px;
}

.profile-menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #a855f7;
  transition: height 0.2s ease;
  border-radius: 0 3px 3px 0;
}

.profile-menu-item:hover {
  background: #2b2730;
  color: #ffffff;
}

.profile-menu-item:hover::before {
  height: 60%;
}

.profile-menu-item:active {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.98);
}

/* Menu Item Icons */
.menu-item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-menu-item:hover .menu-item-icon-wrapper {
  background: rgba(43, 39, 48, 0);
  border-color: rgba(43, 39, 48, 0);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(68, 131, 239, 0.15);
  margin-top: 4px;
}

.menu-item-icon-wrapper i {
  font-size: 1.15rem;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.profile-menu-item:hover .menu-item-icon-wrapper i {
  color: #a855f7;
}

.menu-item-text {
  flex: 1;
  font-weight: 500;
}

.menu-item-arrow {
  font-size: 0.875rem;
  color: #6b7280;
  transition: all 0.2s ease;
  opacity: 0;
}

.profile-menu-item:hover .menu-item-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: #a855f7;
}

/* Logout Item */
.logout-item {
  margin: 0.5rem 0 0.75rem 0;
}

.logout-item .menu-item-icon-wrapper {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.15);
}

.logout-item .menu-item-icon-wrapper i {
  color: #ef4444;
}

.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ffffff;
}

.logout-item:hover .menu-item-icon-wrapper {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.logout-item:hover .menu-item-icon-wrapper i {
  color: #ff5555;
}

.logout-item:hover::before {
  background: #ef4444;
}

/* Remove arrow for logout */
.logout-item .menu-item-arrow {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-dropdown {
    min-width: 280px;
    right: -0.5rem;
  }
  .profile-menu-item {
    padding: 0.75rem;
  }
  .menu-item-icon-wrapper {
    width: 36px;
    height: 36px;
  }
}
/* Loading state animation (optional) */
@keyframes shimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
/* Smooth entrance for each menu item */
.profile-dropdown.show li[role=menuitem] {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.profile-dropdown.show li[role=menuitem]:nth-child(1) {
  animation-delay: 0.05s;
}

.profile-dropdown.show li[role=menuitem]:nth-child(2) {
  animation-delay: 0.1s;
}

.profile-dropdown.show li[role=menuitem]:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ============================================
   HELICORE CUSTOM THEME - High Specificity
   Prefix: .hc- (Helicore Custom)
   ============================================ */
/* Page Container */
.hc-page-container {
  padding: 0 !important;
}

.hc-content-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e5e7eb !important;
  padding: 1rem !important;
}

/* ============================================
   BREADCRUMB STYLING
   ============================================ */
.layout-breadcrumb-container {
  background: transparent !important;
  padding: 1rem 0rem 0.75rem !important;
  margin-bottom: 0 !important;
}

.layout-breadcrumb-left-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.layout-breadcrumb-left-items h4 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* Breadcrumb Component */
.layout-breadcrumb.p-breadcrumb {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.layout-breadcrumb .p-breadcrumb-list {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

.layout-breadcrumb .p-menuitem-link {
  color: #6b7280 !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  transition: color 0.2s !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 6px !important;
}

.layout-breadcrumb .p-menuitem-link:hover {
  color: #a855f7 !important;
  background: rgba(168, 85, 247, 0.05) !important;
}

.layout-breadcrumb .p-menuitem-link .p-menuitem-text {
  color: inherit !important;
}

.layout-breadcrumb .p-menuitem-link .p-menuitem-icon {
  color: #6b7280 !important;
  font-size: 0.875rem !important;
}

.layout-breadcrumb .p-breadcrumb-chevron {
  color: #d1d5db !important;
  font-size: 0.75rem !important;
  margin: 0 0.25rem !important;
}

.layout-breadcrumb .p-menuitem.p-menuitem-active .p-menuitem-link,
.layout-breadcrumb .p-menuitem:last-child .p-menuitem-link {
  color: #111827 !important;
  font-weight: 500 !important;
}

.layout-breadcrumb-left-items .p-button.p-button-secondary {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  width: 2rem !important;
  height: 2rem !important;
  padding: 0 !important;
  border-radius: 8px !important;
  transition: all 0.2s !important;
}

.layout-breadcrumb-left-items .p-button.p-button-secondary:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
  transform: translateX(-2px) !important;
}

/* ============================================
   TOOLBAR STYLING
   ============================================ */
.hc-toolbar.p-toolbar {
  background: transparent !important;
  border: none !important;
  padding: 0 0 1rem 0 !important;
  border-radius: 0 !important;
}

.hc-toolbar-left {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* Search Input */
.hc-search-input.p-input-icon-left {
  width: 280px !important;
}

.hc-search-input.p-input-icon-left > i {
  color: #9ca3af !important;
  left: 0.75rem !important;
}

.hc-search-input.p-input-icon-left > .p-inputtext {
  padding: 0.5rem 0.75rem 0.5rem 2.25rem !important;
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  color: #111827 !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.hc-search-input.p-input-icon-left > .p-inputtext:enabled:hover {
  border-color: #d1d5db !important;
}

.hc-search-input.p-input-icon-left > .p-inputtext:enabled:focus {
  border-color: #a855f7 !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
  background: #ffffff !important;
}

/* ============================================
   BUTTON STYLING
   ============================================ */
.hc-btn-primary.p-button,
.hc-btn-primary.p-button.p-component {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  transition: all 0.2s !important;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25) !important;
}

.hc-btn-primary.p-button:enabled:hover,
.hc-btn-primary.p-button.p-component:enabled:hover {
  background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%) !important;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.35) !important;
  transform: translateY(-1px) !important;
}

.hc-btn-primary.p-button:enabled:active {
  transform: translateY(0) !important;
}

.hc-btn-secondary.p-button,
.hc-btn-secondary.p-button.p-component {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.hc-btn-secondary.p-button:enabled:hover,
.hc-btn-secondary.p-button.p-component:enabled:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
}

.hc-btn-icon.p-button.p-button-rounded.p-button-text,
.hc-btn-icon.p-button.p-component.p-button-rounded.p-button-text {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
  color: #6b7280 !important;
}

.hc-btn-icon.p-button:hover,
.hc-btn-icon.p-button.p-component:hover {
  background: #f3f4f6 !important;
  color: #a855f7 !important;
}

.hc-btn-icon-danger.p-button,
.hc-btn-icon-danger.p-button.p-component {
  color: #ef4444 !important;
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
}

.hc-btn-icon-danger.p-button:hover,
.hc-btn-icon-danger.p-button.p-component:hover {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

/* ============================================
   DATATABLE STYLING
   ============================================ */
.hc-datatable.p-datatable .p-datatable-wrapper {
  font-size: 0.875rem !important;
}

.hc-datatable.p-datatable .p-datatable-header {
  background: transparent !important;
  border: none !important;
  padding: 0 0 1rem 0 !important;
}

/* Table Header */
.hc-datatable.p-datatable .p-datatable-thead > tr > th {
  background: #f9fafb !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.75rem 1rem !important;
  border: none !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.hc-datatable.p-datatable .p-datatable-thead > tr > th:first-child {
  border-radius: 8px 0 0 0 !important;
}

.hc-datatable.p-datatable .p-datatable-thead > tr > th:last-child {
  border-radius: 0 8px 0 0 !important;
}

/* Table Body */
.hc-datatable.p-datatable .p-datatable-tbody > tr {
  background: #ffffff !important;
  color: #374151 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  transition: all 0.2s !important;
}

.hc-datatable.p-datatable .p-datatable-tbody > tr:hover {
  background: #fafafa !important;
}

.hc-datatable.p-datatable .p-datatable-tbody > tr > td {
  padding: 0.75rem 1rem !important;
  border: none !important;
  font-size: 0.875rem !important;
  justify-items: left;
}

/* Override striped rows */
.hc-datatable.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even) {
  background: #ffffff !important;
}

.hc-datatable.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(even):hover {
  background: #fafafa !important;
}

/* Remove gridlines visual effect */
.hc-datatable.p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td {
  border-width: 0 0 1px 0 !important;
}

/* Sort Icons */
.hc-datatable.p-datatable .p-sortable-column .p-sortable-column-icon {
  color: #9ca3af !important;
  font-size: 0.875rem !important;
}

.hc-datatable.p-datatable .p-sortable-column:hover .p-sortable-column-icon {
  color: #a855f7 !important;
}

.hc-datatable.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon {
  color: #a855f7 !important;
}

/* Filter Icons */
.hc-datatable.p-datatable .p-column-filter-menu-button {
  color: #9ca3af !important;
  margin-left: 0.5rem !important;
}

.hc-datatable.p-datatable .p-column-filter-menu-button:hover {
  color: #a855f7 !important;
  background: rgba(168, 85, 247, 0.1) !important;
}

/* Paginator */
.hc-datatable.p-datatable .p-paginator {
  background: transparent !important;
  border: none !important;
  padding: 0.75rem 0 0 0 !important;
  color: #6b7280 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-first,
.hc-datatable.p-datatable .p-paginator .p-paginator-prev,
.hc-datatable.p-datatable .p-paginator .p-paginator-next,
.hc-datatable.p-datatable .p-paginator .p-paginator-last {
  color: #6b7280 !important;
  min-width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-first:not(.p-disabled):hover,
.hc-datatable.p-datatable .p-paginator .p-paginator-prev:not(.p-disabled):hover,
.hc-datatable.p-datatable .p-paginator .p-paginator-next:not(.p-disabled):hover,
.hc-datatable.p-datatable .p-paginator .p-paginator-last:not(.p-disabled):hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-pages .p-paginator-page {
  min-width: 2rem !important;
  height: 2rem !important;
  border-radius: 6px !important;
  color: #6b7280 !important;
  transition: all 0.2s !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-pages .p-paginator-page:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
  background: rgba(168, 85, 247, 0.1) !important;
  color: #a855f7 !important;
  font-weight: 600 !important;
}

.hc-datatable.p-datatable .p-paginator .p-paginator-current {
  color: #6b7280 !important;
  font-size: 0.875rem !important;
}

.hc-datatable.p-datatable .p-paginator .p-dropdown {
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
}

.hc-datatable.p-datatable .p-paginator .p-dropdown:hover {
  border-color: #d1d5db !important;
}

/* ============================================
   DIALOG/MODAL STYLING
   ============================================ */
.hc-dialog.p-dialog {
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e5e7eb !important;
}

.hc-dialog.p-dialog .p-dialog-header {
  background: #ffffff !important;
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 1.25rem !important;
  border-radius: 12px 12px 0 0 !important;
}

.hc-dialog.p-dialog .p-dialog-title {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.hc-dialog.p-dialog .p-dialog-header-icon {
  width: 2rem !important;
  height: 2rem !important;
  color: #6b7280 !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
}

.hc-dialog.p-dialog .p-dialog-header-icon:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.hc-dialog.p-dialog .p-dialog-content {
  background: #ffffff !important;
  padding: 1.25rem !important;
  color: #374151 !important;
}

.hc-dialog.p-dialog .p-dialog-footer {
  background: #ffffff !important;
  border-top: 1px solid #f3f4f6 !important;
  padding: 1rem 1.25rem !important;
  border-radius: 0 0 12px 12px !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.75rem !important;
}

/* Form Fields */
.hc-form-field {
  margin-bottom: 1rem !important;
}

.hc-form-field label {
  display: block !important;
  margin-bottom: 0.4rem !important;
  color: #374151 !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}

.hc-form-field .p-inputtext,
.hc-form-field .p-dropdown .p-inputtext {
  width: 100% !important;
  border-radius: 8px !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.hc-form-field .p-calendar .p-inputtext {
  border-radius: 8px 0px 0px 8px !important;
}

.hc-form-field .p-inputgroup .p-inputtext {
  border-radius: 0px !important;
}

.hc-form-field .p-inputtext:enabled:hover,
.hc-form-field .p-calendar:not(.p-disabled):hover .p-inputtext,
.hc-form-field .p-dropdown:not(.p-disabled):hover {
  border-color: #d1d5db !important;
}

.hc-form-field .p-inputtext:enabled:focus,
.hc-form-field .p-calendar:not(.p-disabled).p-focus .p-inputtext,
.hc-form-field .p-dropdown:not(.p-disabled).p-focus {
  border-color: #a855f7 !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
}

.hc-form-field .p-inputtext.p-invalid {
  border-color: #ef4444 !important;
}

.hc-form-field .p-invalid-txt {
  color: #ef4444 !important;
  font-size: 0.75rem !important;
  margin-top: 0.25rem !important;
  display: block !important;
}

/* ============================================
   TAG/BADGE STYLING
   ============================================ */
.hc-tag.p-tag {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  padding: 0.3rem 0.65rem !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.hc-tag.p-tag.p-tag-success {
  background: #d1fae5 !important;
  color: #065f46 !important;
}

.hc-tag.p-tag.p-tag-warning {
  background: #fef3c7 !important;
  color: #92400e !important;
}

.hc-tag.p-tag.p-tag-danger {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.hc-tag.p-tag.p-tag-info {
  background: #dbeafe !important;
  color: #1e40af !important;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.hc-toast.p-toast .p-toast-message {
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e5e7eb !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-success {
  background: #ffffff !important;
  border-left: 4px solid #10b981 !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-info {
  background: #ffffff !important;
  border-left: 4px solid #3b82f6 !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-warn {
  background: #ffffff !important;
  border-left: 4px solid #f59e0b !important;
}

.hc-toast.p-toast .p-toast-message.p-toast-message-error {
  background: #ffffff !important;
  border-left: 4px solid #ef4444 !important;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.hc-skeleton.p-skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%) !important;
  background-size: 200% 100% !important;
  animation: hc-skeleton-loading 1.5s ease-in-out infinite !important;
}

@keyframes hc-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-page-wrapper {
    padding: 1rem !important;
  }
  .hc-search-input.p-input-icon-left {
    width: 100% !important;
  }
  .layout-breadcrumb-left-items h4 {
    font-size: 1.25rem !important;
  }
  .hc-datatable.p-datatable .p-datatable-thead > tr > th,
  .hc-datatable.p-datatable .p-datatable-tbody > tr > td {
    padding: 0.625rem 0.75rem !important;
  }
}
/* ============================================
   EMPLOYEE FORM STYLES
   ============================================ */
.hc-form-container {
  max-width: 100%;
}

/* ============================================
   FORM SECTIONS
   ============================================ */
.hc-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-section-header > i {
  font-size: 1.5rem;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.hc-section-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.hc-section-header p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Divider */
.p-divider.p-divider-horizontal {
  border-top: 1px solid #e5e7eb;
}

.p-divider.p-divider-horizontal::before {
  border-top-color: #e5e7eb;
}

/* ============================================
   FILE UPLOAD COMPONENT
   ============================================ */
.hc-upload-box {
  position: relative;
  border: 2px dashed #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
  transition: all 0.2s;
  overflow: hidden;
}

.hc-upload-box:hover {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.02);
}

.hc-file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hc-upload-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
  gap: 0.75rem;
  transition: background 0.2s ease;
}

.hc-upload-label:hover {
  background: rgba(168, 85, 247, 0.05);
}

/* PrimeIcon WITHOUT effect */
.hc-upload-icon {
  font-size: 2rem;
  color: #a855f7;
  flex-shrink: 0;
  transition: none !important;
}

/* Text layout */
.hc-upload-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.2;
}

.hc-upload-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.hc-upload-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ============================================
   FILE PREVIEW
   ============================================ */
.hc-file-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 0.75rem;
  transition: all 0.2s;
}

.hc-file-preview:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-file-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-file-icon i {
  font-size: 1.125rem;
}

.hc-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-file-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-file-details {
  font-size: 0.75rem;
  color: #6b7280;
}

.hc-file-remove {
  width: 2rem !important;
  height: 2rem !important;
  flex-shrink: 0;
}

.hc-file-remove:hover {
  background: #fee2e2 !important;
}

/* ============================================
   FORM ACTIONS
   ============================================ */
.hc-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 2px solid #f3f4f6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-section-header > i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  .hc-section-header h3 {
    font-size: 1.125rem;
  }
  .hc-form-actions {
    flex-direction: column-reverse;
  }
  .hc-form-actions .p-button {
    width: 100%;
  }
  .hc-upload-label {
    padding: 1rem;
  }
  .hc-upload-label > i {
    font-size: 1.5rem;
  }
}
/* ============================================
   PRINT STYLES (Optional)
   ============================================ */
@media print {
  .hc-form-actions {
    display: none;
  }
  .hc-upload-box {
    display: none;
  }
  .hc-file-preview .hc-file-remove {
    display: none;
  }
}
/* ============================================
   MINIMAL RINGS LOADER WITH BLUR
   ============================================ */
.hc-loading-page {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

/* ============================================
   BLURRED BACKGROUND
   ============================================ */
.hc-blur-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* ============================================
   SPINNING RINGS LOADER
   ============================================ */
.hc-loader {
  position: relative;
  width: 150px;
  height: 150px;
  z-index: 2;
}

.hc-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: hc-spin 2s linear infinite;
}

/* Ring 1 - Outer */
.hc-ring-1 {
  width: 150px;
  height: 150px;
  margin-top: -75px;
  margin-left: -75px;
  border-top-color: #a855f7;
  border-right-color: #a855f7;
  animation-duration: 2s;
  opacity: 0.8;
}

/* Ring 2 - Middle */
.hc-ring-2 {
  width: 110px;
  height: 110px;
  margin-top: -55px;
  margin-left: -55px;
  border-top-color: #3b82f6;
  border-right-color: #3b82f6;
  animation-duration: 1.5s;
  animation-direction: reverse;
  opacity: 0.6;
}

/* Ring 3 - Inner */
.hc-ring-3 {
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  border-top-color: #06b6d4;
  border-right-color: #06b6d4;
  animation-duration: 1s;
  opacity: 0.4;
}

@keyframes hc-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Glow Effect */
.hc-ring-1 {
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.hc-ring-2 {
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.hc-ring-3 {
  filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.4));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-loader {
    width: 120px;
    height: 120px;
  }
  .hc-ring-1 {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-left: -60px;
    border-width: 2.5px;
  }
  .hc-ring-2 {
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    border-width: 2.5px;
  }
  .hc-ring-3 {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-width: 2.5px;
  }
}
/* ============================================
   FADE OUT
   ============================================ */
.hc-loading-page.fade-out {
  animation: hc-fade-out 0.5s ease-out forwards;
}

@keyframes hc-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* ============================================
   EMPLOYEE NAME CELL STYLES
   ============================================ */
.hc-employee-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

/* ============================================
   AVATAR
   ============================================ */
.hc-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.hc-avatar {
  width: 40px !important;
  height: 40px !important;
  border: 2px solid #f3f4f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.hc-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Avatar Placeholder (when no image) */
.hc-avatar-placeholder {
  border-color: rgba(168, 85, 247, 0.2);
}

.hc-avatar-placeholder .p-avatar-icon {
  font-size: 1rem !important;
}

/* Online Status Indicator */
.hc-status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  animation: hc-pulse-status 2s ease-in-out infinite;
}

@keyframes hc-pulse-status {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.4);
  }
}
/* ============================================
   EMPLOYEE INFO
   ============================================ */
.hc-employee-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
  flex: 1;
}

/* Employee Name */
.hc-employee-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hc-employee-cell:hover .hc-employee-name {
  color: #a855f7;
}

/* Contact Info */
.hc-employee-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.2;
}

.hc-employee-contact i {
  font-size: 0.75rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.hc-employee-contact span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   HOVER EFFECT ON ROW
   ============================================ */
.p-datatable .p-datatable-tbody > tr:hover .hc-employee-cell .hc-avatar {
  border-color: rgba(168, 85, 247, 0.3);
}
.p-datatable .p-datatable-tbody > tr:hover .hc-employee-cell .hc-employee-contact i {
  color: #a855f7;
}

/* ============================================
   COMPACT MODE (Optional)
   ============================================ */
.hc-employee-cell.compact {
  gap: 0.75rem;
  padding: 0.25rem 0;
}
.hc-employee-cell.compact .hc-avatar {
  width: 36px !important;
  height: 36px !important;
}
.hc-employee-cell.compact .hc-employee-name {
  font-size: 0.875rem;
}
.hc-employee-cell.compact .hc-employee-contact {
  font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hc-employee-cell {
    gap: 0.75rem;
  }
  .hc-avatar {
    width: 38px !important;
    height: 38px !important;
  }
  .hc-employee-name {
    font-size: 0.875rem;
  }
  .hc-employee-contact {
    font-size: 0.75rem;
  }
  .hc-status-indicator {
    width: 10px;
    height: 10px;
  }
}
/* ============================================
   EMPLOYEE PROFILE PAGE STYLES
   ============================================ */
/* Profile Header */
.hc-profile-header {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.hc-profile-banner {
  display: none;
}

.hc-profile-content {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hc-profile-avatar-section {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0;
}

.hc-profile-avatar-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.hc-profile-avatar-wrapper .p-avatar {
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  font-size: 2.5rem !important;
}

.hc-profile-avatar-wrapper .p-avatar .p-avatar-text {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.hc-status-badge {
  position: absolute;
  top: 0px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.6);
  }
}
.hc-profile-basic-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hc-profile-role {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.hc-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.hc-profile-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}

.hc-profile-meta span i {
  color: #a855f7;
  font-size: 0.875rem;
}

.hc-profile-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Profile Body */
.hc-profile-body {
  margin-top: 0;
}

/* Tabs */
.hc-profile-tabs.p-tabview .p-tabview-nav {
  background: transparent;
  border: none;
  border-bottom: 2px solid #f3f4f6;
  padding: 0 1rem;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li {
  margin-right: 0.5rem;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li .p-tabview-nav-link {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #6b7280;
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin-bottom: -2px;
  transition: all 0.2s;
  gap: 5px;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li .p-tabview-nav-link:hover {
  background: rgba(168, 85, 247, 0.05);
  color: #a855f7;
}
.hc-profile-tabs.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link {
  background: transparent;
  color: #a855f7;
  border-bottom-color: #a855f7;
}
.hc-profile-tabs.p-tabview .p-tabview-panels {
  background: transparent;
  padding: 1rem 1rem;
}

.hc-tab-content {
  min-height: 400px;
}

/* Info Sections */
.hc-info-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  transition: all 0.2s ease;
}

.designation-main-card .hc-info-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  transition: all 0.2s ease;
}

.section-card .hc-info-section ul,
.section-card .hc-info-section ol {
  padding-left: 22px;
  margin: 8px 0;
}

.hc-info-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.hc-section-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-section-header i {
  font-size: 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.section-card .hc-section-header i {
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.hc-section-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

.hc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.hc-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-info-item.hc-full-width {
  grid-column: 1/-1;
}

.hc-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hc-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
}

/* Stats Cards */
.hc-stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hc-stat-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.hc-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #a855f7;
}

.hc-stat-card i {
  font-size: 20px;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.hc-stat-card div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.hc-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.hc-stat-card.hc-salary-card i {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

/* Profile Table */
.hc-profile-table.hc-datatable {
  margin-top: 0;
}

.hc-profile-table .p-datatable-thead > tr > th {
  background: #fafafa !important;
  font-size: 0.8125rem;
  padding: 1rem !important;
}

.hc-profile-table .p-datatable-tbody > tr > td {
  padding: 1rem !important;
}

/* Amount Styling */
.hc-amount {
  font-weight: 600;
  color: #111827;
}

.hc-net-amount {
  color: black;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hc-profile-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-profile-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .hc-profile-header {
    padding: 1.5rem;
  }
  .hc-profile-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .hc-profile-avatar-section {
    flex-direction: row;
    width: 100%;
    gap: 1rem;
  }
  .hc-profile-avatar-wrapper .p-avatar {
    width: 80px !important;
    height: 80px !important;
    font-size: 2rem !important;
  }
  .hc-profile-avatar-wrapper .p-avatar .p-avatar-text {
    font-size: 40px;
    font-weight: 600;
  }
  .hc-status-badge {
    width: 12px;
    height: 12px;
    top: 6px;
    right: 6px;
    border-width: 2px;
  }
  .hc-profile-name {
    font-size: 1.5rem;
  }
  .hc-profile-role {
    font-size: 0.9375rem;
  }
  .hc-profile-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hc-profile-actions {
    width: 100%;
    flex-direction: column;
  }
  .hc-profile-actions .p-button {
    width: 100%;
  }
  .hc-info-section {
    padding: 1rem;
  }
  .hc-section-header i {
    width: 50px;
    height: 50px;
    font-size: 18px !important;
  }
  .hc-info-grid {
    grid-template-columns: 1fr;
  }
  .hc-stats-cards {
    grid-template-columns: 1fr;
  }
  .hc-profile-tabs.p-tabview .p-tabview-nav {
    padding: 0 0.5rem;
  }
  .hc-profile-tabs.p-tabview .p-tabview-nav li .p-tabview-nav-link {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .hc-profile-tabs.p-tabview .p-tabview-panels {
    padding: 1rem 0.5rem;
  }
}
/* ============================================
   LEAVE APPLICATION FORM STYLES
   ============================================ */
/* Leave Balance Section */
.hc-leave-balance-section {
  margin-bottom: 2rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-balance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hc-balance-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.hc-balance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hc-balance-card i {
  font-size: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.hc-balance-card.hc-applying {
  border-color: #fbbf24;
}

.hc-balance-card.hc-applying i {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.hc-balance-card.hc-remaining {
  border-color: #10b981;
}

.hc-balance-card.hc-remaining i {
  background: linear-gradient(135deg, #10b981, #059669);
}

.hc-balance-card div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-balance-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.hc-balance-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Leave Days Section */
.hc-leave-days-section {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Leave Days Table */
.hc-leave-days-table.hc-datatable .p-datatable-thead > tr > th {
  background: #f9fafb !important;
  color: #374151 !important;
  font-weight: 600;
  padding: 1rem !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.hc-leave-days-table.hc-datatable .p-datatable-tbody > tr > td {
  padding: 1.25rem 1rem !important;
  vertical-align: middle;
}

.hc-leave-days-table.hc-datatable .p-datatable-tbody > tr:hover {
  background: #fafafa !important;
}

/* Date Column */
.hc-leave-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-date-main {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-date-day {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* Day Type Dropdown in Table */
.hc-day-type-dropdown.p-dropdown {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
}

.hc-day-type-dropdown.p-dropdown:not(.p-disabled):hover {
  border-color: #a855f7;
}

.hc-day-type-dropdown.p-dropdown:not(.p-disabled).p-focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.1);
}

/* Day Value Column */
.hc-day-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  display: inline-block;
}

/* Total Summary */
.hc-total-summary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

.hc-total-value {
  font-size: 1.25rem;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
}

/* Divider */
.p-divider {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hc-balance-cards {
    grid-template-columns: 1fr;
  }
  .hc-balance-card {
    padding: 1.25rem;
  }
  .hc-balance-card i {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
  .hc-balance-value {
    font-size: 1.5rem;
  }
  .hc-leave-days-table.hc-datatable .p-datatable-tbody > tr > td {
    padding: 1rem 0.75rem !important;
  }
  .hc-total-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hc-total-value {
    font-size: 1.125rem;
  }
}
/* ============================================
   LEAVE DETAILS DIALOG STYLES
   ============================================ */
.hc-leave-details-dialog.p-dialog {
  border-radius: 16px !important;
  max-width: 95vw;
}

.hc-leave-details-dialog .p-dialog-content {
  padding: 0 !important;
}

/* Dialog Header */
.hc-dialog-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.hc-dialog-title-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-dialog-title-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hc-leave-id {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}

.hc-status-tag {
  font-size: 0.75rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
}

/* Dialog Content */
.hc-leave-details-content {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Detail Section */
.hc-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-detail-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-detail-section-header i {
  font-size: 1.125rem;
  color: #a855f7;
}

.hc-detail-section-header span {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

/* Employee Info Card */
.hc-employee-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.hc-employee-avatar {
  flex-shrink: 0;
}
.hc-employee-avatar .p-avatar .p-avatar-text {
  text-transform: uppercase;
}

.hc-employee-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-employee-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.hc-employee-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.hc-employee-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-employee-meta i {
  color: #a855f7;
  font-size: 0.875rem;
}

/* Info Grid */
.hc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.hc-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hc-info-item.hc-total-days {
  padding: 2px 0 0 20px;
}

.hc-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hc-info-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
}

.hc-info-value.hc-highlight {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #a855f7;
}

/* Reason Box */
.hc-reason-box {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.hc-reason-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
}

/* Attachment Card */
.hc-attachment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.hc-attachment-card:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-attachment-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hc-attachment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-attachment-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-attachment-meta {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* Leave Days Table */
.hc-detail-table.hc-datatable .p-datatable-thead > tr > th {
  background: #f9fafb !important;
  color: #6b7280 !important;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.875rem 1rem !important;
  border-bottom: 2px solid #e5e7eb !important;
}

.hc-detail-table.hc-datatable .p-datatable-tbody > tr > td {
  padding: 1rem !important;
  font-size: 0.875rem;
}

.hc-detail-table.hc-datatable .p-datatable-tbody > tr:hover {
  background: #fafafa !important;
}

/* Date in Table */
.hc-detail-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-detail-date-main {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-detail-date-day {
  font-size: 0.8125rem;
  color: #6b7280;
}

/* Day Value in Table */
.hc-detail-day-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  display: inline-block;
}

/* Dialog Footer */
.hc-dialog-footer-content {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.hc-dialog-footer-content .p-button-danger {
  background: #ef4444 !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.hc-dialog-footer-content .p-button-danger:hover {
  background: #dc2626 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hc-leave-details-dialog.p-dialog {
    width: 95vw !important;
    max-width: 95vw !important;
  }
  .hc-leave-details-content {
    padding: 1rem;
  }
  .hc-dialog-header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-employee-info-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-info-grid {
    grid-template-columns: 1fr;
  }
  .hc-employee-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hc-attachment-card {
    flex-wrap: wrap;
  }
  .hc-dialog-footer-content {
    flex-direction: column-reverse;
    width: 100%;
  }
  .hc-dialog-footer-content .p-button {
    width: 100%;
  }
  .hc-detail-table.hc-datatable .p-datatable-thead > tr > th,
  .hc-detail-table.hc-datatable .p-datatable-tbody > tr > td {
    padding: 0.75rem !important;
    font-size: 0.8125rem;
  }
}
/* ============================================
   NOTIFICATION BELL STYLES
   ============================================ */
/* Notification Button */
.hc-notification-wrapper {
  position: relative;
  display: inline-flex;
}

.hc-notification-btn {
  position: relative;
  width: 44px !important;
  height: 44px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.2s ease;
}

.hc-notification-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.hc-notification-btn .pi-bell {
  font-size: 1.55rem;
}

.hc-notification-btn .p-badge {
  position: absolute;
  top: 3px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 0.35rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Notification Panel */
.hc-notification-panel.p-overlaypanel {
  width: 420px;
  max-width: 95vw;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  margin-top: 0.5rem;
}

.hc-notification-panel .p-overlaypanel-content {
  padding: 0;
}

/* Notification Container */
.hc-notification-container {
  display: flex;
  flex-direction: column;
}

/* Header */
.hc-notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-notification-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hc-notification-title h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hc-unread-badge {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
}

.hc-clear-all-btn {
  color: #ef4444 !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem !important;
}

.hc-clear-all-btn:hover {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

/* Notification List */
.hc-notification-list .p-scrollpanel .p-scrollpanel-wrapper {
  border-right: none;
}

.hc-notification-list .p-scrollpanel .p-scrollpanel-bar {
  background: #e5e7eb;
  opacity: 1;
  width: 6px;
  border-radius: 3px;
}

.hc-notification-list .p-scrollpanel .p-scrollpanel-bar:hover {
  background: #d1d5db;
}

/* Notification Item */
.hc-notification-item {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hc-notification-item:hover {
  background: #fafafa;
}

.hc-notification-item.hc-unread {
  background: rgba(168, 85, 247, 0.03);
}

.hc-notification-item.hc-unread:hover {
  background: rgba(168, 85, 247, 0.06);
}

/* Notification Icon */
.hc-notification-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.hc-notification-icon.hc-notif-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.hc-notification-icon.hc-notif-info {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.hc-notification-icon.hc-notif-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.hc-notification-icon.hc-notif-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Notification Content */
.hc-notification-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.hc-notification-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.hc-notification-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hc-notification-text p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hc-notification-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}

.hc-notification-time i {
  font-size: 0.7rem;
}

/* Close Button */
.hc-notif-close {
  width: 28px !important;
  height: 28px !important;
  color: #9ca3af !important;
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.2s ease;
}

.hc-notification-item:hover .hc-notif-close {
  opacity: 1;
}

.hc-notif-close:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
}

/* Unread Indicator */
.hc-unread-indicator {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

/* Empty State */
.hc-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}

.hc-empty-state i {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.hc-empty-state p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}

.hc-empty-state span {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Footer */
.hc-notification-footer {
  padding: 0.75rem 1.25rem;
  border-top: 2px solid #f3f4f6;
  display: flex;
  justify-content: center;
}

.hc-view-all-btn {
  color: #a855f7 !important;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
  padding: 0.625rem !important;
}

.hc-view-all-btn:hover {
  background: rgba(168, 85, 247, 0.05) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hc-notification-panel.p-overlaypanel {
    width: 95vw;
    margin-top: 0.25rem;
  }
  .hc-notification-header {
    padding: 1rem;
  }
  .hc-notification-title h3 {
    font-size: 1rem;
  }
  .hc-notification-item {
    padding: 0.875rem 1rem;
  }
  .hc-notification-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  .hc-notification-text h4 {
    font-size: 0.875rem;
  }
  .hc-notification-text p {
    font-size: 0.8125rem;
  }
  .hc-notification-list {
    max-height: 350px;
  }
}
/* Dark mode in topbar */
.layout-topbar .hc-notification-btn {
  color: rgba(255, 255, 255, 0.9) !important;
}

.layout-topbar .hc-notification-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Salary Header */
.hc-salary-header {
  background: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  z-index: 100;
}
.hc-salary-header.sticky {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hc-page-container {
  transition: margin-top 0.3s ease;
}
.hc-page-container.header-sticky {
  margin-top: 110px;
}

.hc-salary-header-left {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.hc-employee-section {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.hc-employee-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.hc-employee-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.hc-employee-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-employee-meta i {
  color: #a855f7;
}

.hc-salary-period {
  display: flex;
  gap: 2rem;
  padding-left: 2rem;
}

.hc-period-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-period-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hc-period-value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 600;
}

.hc-salary-header-right {
  gap: 0.75rem;
}

.hc-salary-header-right .p-button {
  flex: 1;
  min-width: 100px;
}

/* Net Salary Card */
.hc-net-salary-card {
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hc-net-salary-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hc-net-salary-content > i {
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  padding: 1rem;
  border-radius: 8px;
}

.hc-net-salary-content > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-net-label {
  font-size: 1.5rem;
  opacity: 0.9;
  font-weight: 600;
  color: black;
  display: flex;
  gap: 0.75rem;
}

.hc-net-amount-salary {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: black;
  align-content: center;
}

.hc-salary-formula {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 14px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  flex-wrap: wrap;
}

.hc-salary-formula:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-salary-formula i {
  font-size: 1rem;
  opacity: 0.9;
  color: black;
}

.hc-salary-formula .hc-result {
  margin-left: auto;
  font-size: 1.375rem;
  color: black;
  font-weight: 700;
}

/* Page Container */
.hc-page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Content Card */
.hc-content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

/* Salary Section */
.hc-salary-section {
  margin-bottom: 1.5rem;
}

.hc-section-header-salary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-section-title {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hc-section-title i {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1.5rem;
  color: white;
}

.hc-section-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hc-section-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.hc-section-total.hc-deduction-total {
  color: #ef4444;
}

/* Breakdown Items */
.hc-salary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.hc-breakdown-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.hc-breakdown-item.hc-highlight-deduction {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.hc-breakdown-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hc-breakdown-label > span:first-child {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.hc-breakdown-percent {
  font-size: 0.75rem;
  color: #6b7280;
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}

.hc-breakdown-note {
  font-size: 0.8125rem;
  color: #6b7280;
}

.hc-breakdown-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  min-width: 120px;
  text-align: right;
}

.hc-deduction-amount {
  color: #ef4444;
}

.hc-breakdown-total {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  padding: 1.25rem 1rem;
  font-weight: 700;
}

.hc-breakdown-total .hc-breakdown-label {
  font-size: 1.125rem;
  font-weight: 700;
}

.hc-breakdown-total .hc-breakdown-amount {
  font-size: 1.375rem;
}

.hc-gross-amount {
  color: #10b981;
}

/* Info Cards */
.hc-info-card {
  margin-bottom: 1.5rem;
}

.hc-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.hc-info-header i {
  font-size: 1.25rem;
  color: #a855f7;
}

.hc-info-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* Working Days Grid */
.hc-working-days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hc-day-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  transition: all 0.2s;
}

.hc-day-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hc-day-value {
  font-weight: 700;
  color: #111827;
}

.hc-day-value.hc-working {
  color: #a855f7;
}

.hc-day-label {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

/* Leave Summary */
.hc-leave-summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hc-leave-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 12px;
  border: 2px dashed #ef4444;
}

.hc-leave-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ef4444;
}

.hc-leave-text {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.hc-leave-dates {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hc-dates-label {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 600;
}

.hc-leave-date-badge {
  font-size: 0.875rem;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

/* Payment Info */
.hc-payment-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-payment-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.875rem;
  background: #f9fafb;
  border-radius: 8px;
}

.hc-payment-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hc-payment-value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 600;
}

.hc-wrapper-div {
  gap: 2px;
  display: grid;
  margin-bottom: 8px;
}

/* Tag */
.hc-tag {
  padding: 0.5rem 1rem;
}

/* InputNumber for editable fields */
.hc-breakdown-item .p-inputnumber {
  width: 100%;
  min-width: 120px;
}

.hc-breakdown-item .p-inputnumber-input {
  text-align: right;
  font-weight: 600;
}

/* Grid Layout */
.hc-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hc-salary-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-salary-header-left {
    width: 100%;
    flex-direction: column;
  }
  .hc-salary-period {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #f3f4f6;
    padding-top: 1rem;
    width: 100%;
  }
  .hc-salary-header-right {
    width: 100%;
  }
  .hc-net-salary-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-salary-formula {
    width: 100%;
    justify-content: space-between;
  }
  .hc-salary-formula .hc-result {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: right;
  }
  .hc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hc-salary-header {
    padding: 1.5rem;
  }
  .hc-employee-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-employee-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hc-net-salary-card {
    padding: 1.5rem;
  }
  .hc-net-salary-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .hc-net-amount-salary {
    font-size: 2rem;
  }
  .hc-salary-formula {
    flex-wrap: wrap;
    font-size: 1rem;
    gap: 0.5rem;
  }
  .hc-working-days-grid {
    grid-template-columns: 1fr;
  }
  .hc-breakdown-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hc-breakdown-amount {
    width: 100%;
    text-align: left;
  }
  .hc-salary-header-right {
    flex-direction: column;
    width: 100%;
  }
  .hc-salary-header-right .p-button {
    width: 100%;
  }
}
/* Main Container */
.expense-form-container {
  max-width: 800px;
  margin: 20px auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.expense-form-header {
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
}

/* Page Title */
.page-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Form Content */
.form-content {
  padding: 24px;
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1/-1;
}

/* Form Labels */
.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.required {
  color: #dc2626;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Select Dropdown */
.form-select {
  background-color: white;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 2px dashed #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #f9fafb;
}

.file-upload-label:hover {
  border-color: #059669;
  background-color: #f0fdf4;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Upload Icon */
.upload-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #666;
}

.upload-svg {
  width: 32px;
  height: 32px;
  color: #059669;
}

.upload-text {
  font-weight: 500;
}

.upload-subtext {
  font-size: 12px;
  color: #999;
}

/* File Info */
.file-info {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

/* Preview Image */
.preview-image {
  margin-top: 12px;
  max-width: 200px;
  border-radius: 6px;
  display: block;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-pending {
  background-color: #fef3c7;
  color: #92400e;
}

.status-approved {
  background-color: #d1fae5;
  color: #065f46;
}

/* Help Text */
.help-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid #e5e5e5;
  justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .expense-form-container {
    margin: 10px;
  }
  .expense-form-header {
    padding: 16px;
  }
  .form-content {
    padding: 16px;
  }
  .form-actions {
    padding: 16px;
    flex-direction: column-reverse;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 20px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .upload-icon {
    gap: 6px;
  }
  .upload-svg {
    width: 24px;
    height: 24px;
  }
}
/* Header Section */
.expense-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
}

.expense-list-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.expense-list-actions {
  display: flex;
  gap: 12px;
}

/* Filters Section */
.expense-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-select,
.filter-input {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  background-color: white;
  transition: all 0.2s;
}

.filter-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Date Range Input */
.date-range-input {
  position: relative;
  display: flex;
  align-items: center;
}

.calendar-icon {
  position: absolute;
  left: 12px;
  pointer-events: none;
  font-size: 16px;
}

.date-range-input .filter-input {
  padding-left: 36px;
  width: 100%;
}

/* Table Section */
.expense-table-container {
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.expense-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.expense-table thead {
  background-color: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}

.expense-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.expense-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}

.expense-table tbody tr:hover {
  background-color: #f9fafb;
}

.expense-table tbody tr:last-child {
  border-bottom: none;
}

.expense-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: #1f2937;
}

.amount-cell {
  font-weight: 600;
  text-align: left;
}

/* Total Row */
.total-row {
  border-top: 2px solid #d1d5db !important;
  font-weight: 600;
}

.total-row:hover {
  background-color: #f3f4f6 !important;
}

.total-label {
  text-align: right;
  font-weight: 600;
  color: #1f2937;
}

.total-amount {
  font-weight: 700;
  color: #059669;
  font-size: 15px;
}

/* Action Button */
.action-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-btn {
  background-color: #059669;
  color: white;
  width: 36px;
  height: 36px;
}

.view-btn:hover {
  background-color: #047857;
}

.eye-icon {
  font-size: 16px;
}

/* Pagination */
.pagination-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 14px;
  color: #6b7280;
}

.pagination-controls {
  display: flex;
  gap: 8px;
}

.pagination-btn {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: white;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  min-width: 36px;
  height: 36px;
}

.pagination-btn:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: #059669;
  color: white;
}

.btn-primary:hover {
  background-color: #047857;
}

.btn-primary:active {
  background-color: #065f46;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .expense-filters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .expense-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .expense-list-actions {
    width: 100%;
  }
  .expense-list-actions .btn {
    flex: 1;
    justify-content: center;
  }
  .expense-filters {
    grid-template-columns: 1fr;
  }
  .expense-table-container {
    overflow-x: auto;
  }
  .expense-table {
    min-width: 800px;
  }
  .pagination-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .expense-list-title {
    font-size: 20px;
  }
  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  .expense-table th,
  .expense-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.remark-text {
  display: inline-block;
  max-width: 230px;
  /* slightly less than column width */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/* Client View Profile Styles */
/* Info Row Styles */
.hc-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.hc-info-row:last-child {
  border-bottom: none;
}

.hc-info-labels {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-color-secondary);
  font-size: 0.95rem;
}

.hc-info-labels i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.hc-info-values {
  font-weight: 600;
  color: var(--text-color);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

/* Info Container */
.hc-info-container {
  background: var(--surface-card);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

/* Details Grid - Two Column Layout */
.hc-details-grid-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hc-details-grid-two-column {
    grid-template-columns: 1fr;
  }
}
/* Profile Header Enhancements for Client View */
.hc-profile-header .hc-profile-banner {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hc-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hc-info-values {
    text-align: left;
    max-width: 100%;
  }
  .hc-profile-actions {
    width: 100%;
  }
  .hc-profile-actions .hc-btn-secondary {
    width: 100%;
  }
}
/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .hc-info-container {
    background: var(--surface-ground);
  }
  .hc-info-row {
    border-bottom-color: var(--surface-border);
  }
}
/* Additional styling for consistent spacing */
.hc-form-section {
  margin-bottom: 1.5rem;
}

.hc-form-section:last-child {
  margin-bottom: 0;
}

/* Section Header */
.hc-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.hc-section-header i {
  font-size: 1rem;
}

.hc-section-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.hc-section-header p {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: var(--text-color-secondary);
}

.hover-text {
  cursor: pointer;
  color: #374151 !important;
}

.hover-text:hover {
  color: #a855f7 !important;
}

/* Invoice Items Table Styling */
.invoice-items-table {
  margin-top: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.items-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr 0.8fr 1fr 60px;
  gap: 0.5rem;
  background-color: #f3f4f6;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
}

.items-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr 0.8fr 1fr 60px;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.items-row:last-child {
  border-bottom: none;
}

.items-row:hover {
  background-color: #f9fafb;
}

.item-col {
  display: flex;
}

.item-col .p-inputtext,
.item-col .p-inputnumber {
  width: 100%;
}

.item-name {
  grid-column: span 1;
}

.item-sac {
  grid-column: span 1;
}

.item-qty {
  grid-column: span 1;
}

.item-rate {
  grid-column: span 1;
}

.item-cgst {
  grid-column: span 1;
}

.item-sgst {
  grid-column: span 1;
}

.item-amount {
  grid-column: span 1;
}

.item-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* space between + and delete */
  width: 60px;
}

.item-action .p-button {
  width: 32px;
  height: 32px;
}

/* Invoice Totals Styling */
.invoice-totals {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.totals-grid {
  width: 400px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.total-row label {
  font-size: 0.95rem;
  color: #374151;
}

.total-value {
  font-size: 1rem;
  color: #111827;
  font-weight: 500;
}

.total-final {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid #d1d5db;
}

.total-final label {
  font-size: 1.1rem;
  font-weight: 600;
}

.total-final .total-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #059669;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .items-header,
  .items-row {
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 0.6fr 0.6fr 0.8fr 60px;
    gap: 0.25rem;
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 992px) {
  .invoice-items-table {
    overflow-x: auto;
  }
  .items-header,
  .items-row {
    min-width: 1000px;
  }
  .totals-grid {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .items-header,
  .items-row {
    grid-template-columns: minmax(150px, 2fr) minmax(80px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(80px, 0.8fr) minmax(80px, 0.8fr) minmax(100px, 1fr) 60px;
  }
}
/* Input field adjustments within items table */
.items-row .p-inputnumber-input {
  text-align: center;
}

.items-row .p-button-icon-only {
  width: 2rem;
  height: 32px;
}

.rp-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.rp-field .rp-name-input {
  width: 320px;
  max-width: 100%;
}
.rp-field .rp-required {
  color: #EF4444;
}
.rp-field .rp-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
  display: block;
}

.rp-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.rp-heading-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.rp-heading-sub {
  font-size: 12px;
  color: #6B7280;
}

.rp-section {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.rp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.rp-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.rp-section-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rp-section-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #EEF2FF;
  color: #4F46E5;
}

.rp-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid #E5E7EB;
  background: #FAFAFA;
}

.rp-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid #D1D5DB;
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rp-chip:hover {
  border-color: #6366F1;
  color: #4F46E5;
  background: #EEF2FF;
}
.rp-chip.active {
  border-color: #4F46E5;
  background: #EEF2FF;
  color: #4338CA;
}
.rp-chip .p-checkbox {
  pointer-events: none;
}

.rp-table {
  width: 100%;
  border-collapse: collapse;
}
.rp-table thead tr {
  background: #F3F4F6;
}
.rp-table thead th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid #E5E7EB;
}
.rp-table thead th:first-child {
  width: 180px;
}
.rp-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.1s;
}
.rp-table tbody tr:last-child {
  border-bottom: none;
}
.rp-table tbody tr:hover {
  background: #FAFAFA;
}
.rp-table tbody td {
  padding: 11px 16px;
  font-size: 13px;
  color: #374151;
  background-color: #FAFAFA;
}
.rp-table tbody td:first-child {
  font-weight: 600;
  color: #111827;
}

.rp-cb-cell {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rp-cb-cell label {
  font-size: 13px;
  color: #4B5563;
  cursor: pointer;
}

.rp-empty {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #9CA3AF;
  font-style: italic;
}

.rp-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: end;
}

.rp-card {
  background-color: #fff;
  padding: 20px;
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item.add-new-option {
  border-top: 1px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  color: #6366f1;
  font-weight: 600;
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item.add-new-option:hover {
  background-color: #f0f0ff;
  color: #4f46e5;
}

.p-dropdown-panel .p-dropdown-items .p-dropdown-item.add-new-option .p-dropdown-item-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.add-new-designation-option {
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
  padding-top: 8px !important;
  font-weight: 600;
  color: #6366f1;
}

.add-new-designation-option:hover {
  background-color: #f0f0ff !important;
}

.hc-view-more-btn {
  width: 100%;
  justify-content: center;
  color: #4f46e5 !important;
  font-size: 0.85rem;
  font-weight: 500;
}

.hc-view-more-btn:hover {
  background: #f5f3ff !important;
}

:root {
  --np-font: 'DM Sans', sans-serif;
  /* Brand */
  --np-accent: #a855f7;
  --np-accent-dark: #9333ea;
  --np-accent-light: rgba(168, 85, 247, 0.10);
  --np-accent-ring: rgba(168, 85, 247, 0.22);
  /* Surface */
  --np-bg: #f8f7fc;
  --np-card: #ffffff;
  --np-card-hover: #faf9fe;
  --np-border: #ede8f5;
  --np-border-light: #f3effa;
  /* Text */
  --np-text-primary: #18102e;
  --np-text-secondary: #5b5270;
  --np-text-muted: #9b93ae;
  /* Status */
  --np-success-bg: #d1fae5;
  --np-success-fg: #065f46;
  --np-warning-bg: #fef3c7;
  --np-warning-fg: #92400e;
  --np-error-bg: #fee2e2;
  --np-error-fg: #991b1b;
  --np-info-bg: #e0e7ff;
  --np-info-fg: #3730a3;
  --np-profile-bg: #ede9fe;
  --np-profile-fg: #6d28d9;
  /* Shadows */
  --np-shadow-sm: 0 1px 3px rgba(90, 50, 160, 0.07),
      0 1px 2px rgba(90, 50, 160, 0.05);
  --np-shadow-md: 0 4px 16px rgba(90, 50, 160, 0.10),
      0 1px 4px rgba(90, 50, 160, 0.06);
  --np-shadow-lg: 0 12px 32px rgba(90, 50, 160, 0.14),
      0 2px 8px rgba(90, 50, 160, 0.08);
  /* Transitions */
  --np-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --np-duration: 0.22s;
}

@keyframes np-page-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-np-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.hc-np-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Back button */
.hc-np-back {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  cursor: pointer;
  color: var(--np-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--np-duration) var(--np-ease), color var(--np-duration) var(--np-ease), border-color var(--np-duration) var(--np-ease), box-shadow var(--np-duration) var(--np-ease);
  box-shadow: var(--np-shadow-sm);
}

.hc-np-back:hover {
  background: var(--np-accent-light);
  color: var(--np-accent);
  border-color: var(--np-accent-ring);
  box-shadow: 0 0 0 3px var(--np-accent-ring);
}

.hc-np-back .pi {
  font-size: 0.875rem;
}

/* Titles */
.hc-np-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--np-text-primary);
  margin: 0 0 0.2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hc-np-subtitle {
  font-size: 0.875rem;
  color: var(--np-text-muted);
  margin: 0;
  font-weight: 400;
}

/* Mark All Read button */
.hc-np-header-right .p-button {
  font-family: var(--np-font) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--np-border) !important;
  color: var(--np-text-secondary) !important;
  background: var(--np-card) !important;
  box-shadow: var(--np-shadow-sm) !important;
  transition: all var(--np-duration) var(--np-ease) !important;
  gap: 0.375rem !important;
}

.hc-np-header-right .p-button:hover {
  background: var(--np-accent-light) !important;
  color: var(--np-accent) !important;
  border-color: var(--np-accent-ring) !important;
  box-shadow: 0 0 0 3px var(--np-accent-ring) !important;
}

/* ─────────────────────────────────────────────────────────
   TOOLBAR
   ───────────────────────────────────────────────────────── */
.hc-np-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  margin-top: 1rem;
}

/* ─────────────────────────────────────────────────────────
   FILTER TABS
   ───────────────────────────────────────────────────────── */
.hc-np-tabs {
  display: flex;
  gap: 1rem;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  padding: 7px 14px;
  border-radius: 10px;
  box-shadow: var(--np-shadow-sm);
}

.hc-np-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 7px;
  border: none;
  background: transparent;
  font-family: var(--np-font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--np-text-muted);
  cursor: pointer;
  transition: all var(--np-duration) var(--np-ease);
  white-space: nowrap;
}

.hc-np-tab:hover {
  color: var(--np-text-primary);
}

.hc-np-tab.hc-np-tab--active {
  background: var(--np-accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
  padding: 8px;
}

/* Tab count badge */
.hc-np-tab-count {
  font-family: var(--np-font);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  border-radius: 999px;
  padding: 0.1rem 0.15rem;
  min-width: 1.25rem;
  text-align: center;
  transition: all var(--np-duration) var(--np-ease);
}

.hc-np-tab.hc-np-tab--active .hc-np-tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hc-np-tab-count.hc-np-tab-count--active {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ─────────────────────────────────────────────────────────
   DATE GROUP LABELS
   ───────────────────────────────────────────────────────── */
.hc-np-group {
  margin-bottom: 0.25rem;
}

.hc-np-group-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hc-np-group-label span {
  font-family: var(--np-font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--np-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-np-group-divider {
  flex: 1;
  height: 1px;
  background: var(--np-border);
}

/* ─────────────────────────────────────────────────────────
   NOTIFICATION ITEM
   ───────────────────────────────────────────────────────── */
.hc-np-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  cursor: default;
  transition: box-shadow var(--np-duration) var(--np-ease), border-color var(--np-duration) var(--np-ease), background var(--np-duration) var(--np-ease), transform var(--np-duration) var(--np-ease);
  animation: np-item-in 0.3s var(--np-ease) both;
}

@keyframes np-item-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hc-np-item:hover {
  background: var(--np-card-hover);
  border-color: #d8ccf0;
  box-shadow: var(--np-shadow-md);
  transform: translateY(-1px);
}

/* Unread state */
.hc-np-item.hc-np-item--unread {
  background: #fdfbff;
  border-color: #ddd0f7;
  border-left: 3px solid var(--np-accent);
}

.hc-np-item.hc-np-item--unread:hover {
  background: #faf6ff;
  border-color: var(--np-accent);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.12), var(--np-shadow-sm);
}

/* Unread indicator dot */
.hc-np-unread-dot {
  position: absolute;
  top: 1.1rem;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--np-accent);
  border: 2.5px solid var(--np-bg);
  box-shadow: 0 0 0 1.5px var(--np-accent-ring);
  animation: np-dot-pulse 2.5s ease-in-out infinite;
}

@keyframes np-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 1.5px var(--np-accent-ring);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
  }
}
/* ─────────────────────────────────────────────────────────
   ITEM ICON / AVATAR
   ───────────────────────────────────────────────────────── */
.hc-np-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--np-border-light);
  border: 1.5px solid var(--np-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--np-duration) var(--np-ease), box-shadow var(--np-duration) var(--np-ease);
}

.hc-np-item:hover .hc-np-item-icon {
  border-color: var(--np-accent-ring);
  box-shadow: 0 0 0 3px var(--np-accent-ring);
}

.hc-np-item-icon img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hc-np-item-icon .pi {
  font-size: 1.2rem;
  color: var(--np-accent);
  transition: transform var(--np-duration) var(--np-ease);
}

.hc-np-item:hover .hc-np-item-icon .pi {
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────
   ITEM CONTENT
   ───────────────────────────────────────────────────────── */
.hc-np-item-content {
  flex: 1;
  min-width: 0;
}

.hc-np-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.hc-np-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Sender name */
.hc-np-item-content h4 {
  font-family: var(--np-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--np-text-primary);
  margin: 0;
  line-height: 1.3;
}

/* Message body */
.hc-np-item-content p {
  font-family: var(--np-font);
  font-size: 0.875rem;
  color: var(--np-text-secondary);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Timestamp */
.hc-np-item-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--np-font);
  font-size: 0.75rem;
  color: var(--np-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.hc-np-item-time .pi {
  font-size: 0.65rem;
  color: var(--np-text-muted);
}

/* ─────────────────────────────────────────────────────────
   TYPE BADGE
   ───────────────────────────────────────────────────────── */
.hc-np-type-badge {
  font-family: var(--np-font);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.175rem 0.55rem;
  border-radius: 999px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}

/* ─────────────────────────────────────────────────────────
   ITEM ACTIONS
   ───────────────────────────────────────────────────────── */
.hc-np-item-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-left: 0.25rem;
  opacity: 0;
  transition: opacity var(--np-duration) var(--np-ease);
}

.hc-np-item:hover .hc-np-item-actions {
  opacity: 1;
}

/* Action buttons */
.hc-np-item-actions .p-button.p-button-rounded.p-button-text {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 8px !important;
  color: var(--np-text-muted) !important;
  background: transparent !important;
  border: none !important;
  transition: background var(--np-duration) var(--np-ease), color var(--np-duration) var(--np-ease) !important;
}

/* Mark read (check) */
.hc-np-item-actions .p-button.p-button-rounded.p-button-text:not(.p-button-danger):hover {
  background: var(--np-accent-light) !important;
  color: var(--np-accent) !important;
}

/* Remove (X danger) */
.hc-np-item-actions .p-button.p-button-rounded.p-button-text.p-button-danger {
  color: #d1c0df !important;
}

.hc-np-item-actions .p-button.p-button-rounded.p-button-text.p-button-danger:hover {
  background: #fee2e2 !important;
  color: #ef4444 !important;
}

.hc-np-item-actions .p-button .p-button-icon {
  font-size: 0.8rem !important;
}

/* ─────────────────────────────────────────────────────────
   SKELETON LOADER
   ───────────────────────────────────────────────────────── */
.hc-np-skeleton-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--np-card);
  border: 1.5px solid var(--np-border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.hc-np-skeleton-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(90deg, #ede8f5 25%, #f5f0fb 50%, #ede8f5 75%);
  background-size: 200% 100%;
  animation: np-shimmer 1.6s ease-in-out infinite;
}

.hc-np-skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 0.2rem;
}

.hc-np-skeleton-line {
  height: 11px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ede8f5 25%, #f5f0fb 50%, #ede8f5 75%);
  background-size: 200% 100%;
  animation: np-shimmer 1.6s ease-in-out infinite;
}

.hc-np-skeleton-line--title {
  width: 30%;
  animation-delay: 0.05s;
}

.hc-np-skeleton-line--msg {
  width: 78%;
  animation-delay: 0.1s;
}

.hc-np-skeleton-line--time {
  width: 20%;
  animation-delay: 0.15s;
}

@keyframes np-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ─────────────────────────────────────────────────────────
   EMPTY STATE
   ───────────────────────────────────────────────────────── */
.hc-np-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  animation: np-empty-in 0.4s var(--np-ease) both;
}

@keyframes np-empty-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hc-np-empty .pi-bell-slash {
  font-size: 3rem;
  color: #d8cff0;
  margin-bottom: 1.25rem;
  display: block;
}

.hc-np-empty p {
  font-family: var(--np-font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--np-text-secondary);
  margin: 0 0 0.4rem;
}

.hc-np-empty span {
  font-family: var(--np-font);
  font-size: 0.875rem;
  color: var(--np-text-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.hc-np-empty .p-button {
  font-family: var(--np-font) !important;
  font-size: 0.875rem !important;
  color: var(--np-accent) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  background: var(--np-accent-light) !important;
  border: none !important;
  transition: background var(--np-duration), box-shadow var(--np-duration) !important;
}

.hc-np-empty .p-button:hover {
  background: rgba(168, 85, 247, 0.18) !important;
  box-shadow: 0 0 0 3px var(--np-accent-ring) !important;
}

/* ─────────────────────────────────────────────────────────
   PAGINATOR
   ───────────────────────────────────────────────────────── */
.hc-np-paginator {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.hc-np-paginator .p-paginator {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-family: var(--np-font) !important;
}

.hc-np-paginator .p-paginator .p-paginator-first,
.hc-np-paginator .p-paginator .p-paginator-prev,
.hc-np-paginator .p-paginator .p-paginator-next,
.hc-np-paginator .p-paginator .p-paginator-last,
.hc-np-paginator .p-paginator .p-paginator-pages .p-paginator-page {
  font-family: var(--np-font) !important;
  font-size: 0.875rem !important;
  min-width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 8px !important;
  color: var(--np-text-secondary) !important;
  background: var(--np-card) !important;
  border: 1.5px solid var(--np-border) !important;
  margin: 0 0.2rem !important;
  transition: all var(--np-duration) var(--np-ease) !important;
}

.hc-np-paginator .p-paginator .p-paginator-first:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-prev:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-next:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-last:not(.p-disabled):hover,
.hc-np-paginator .p-paginator .p-paginator-pages .p-paginator-page:hover {
  background: var(--np-accent-light) !important;
  color: var(--np-accent) !important;
  border-color: var(--np-accent-ring) !important;
}

.hc-np-paginator .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
  background: var(--np-accent) !important;
  color: #ffffff !important;
  border-color: var(--np-accent) !important;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3) !important;
  font-weight: 700 !important;
}

.hc-np-paginator .p-paginator .p-paginator-current {
  font-family: var(--np-font) !important;
  font-size: 0.8125rem !important;
  color: var(--np-text-muted) !important;
  padding: 0 0.75rem !important;
  border: none !important;
  background: transparent !important;
}

/* ─────────────────────────────────────────────────────────
   CONFIRM DIALOG (delete)
   ───────────────────────────────────────────────────────── */
.p-confirm-dialog.p-dialog {
  border-radius: 14px !important;
  border: 1.5px solid var(--np-border) !important;
  box-shadow: var(--np-shadow-lg) !important;
  font-family: var(--np-font) !important;
}

.p-confirm-dialog .p-dialog-header {
  border-radius: 12px 12px 0 0 !important;
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid var(--np-border-light) !important;
  background: var(--np-card) !important;
}

.p-confirm-dialog .p-dialog-content {
  padding: 1.25rem 1.5rem !important;
  font-family: var(--np-font) !important;
  font-size: 0.9375rem !important;
  color: var(--np-text-secondary) !important;
  background: var(--np-card) !important;
}

.p-confirm-dialog .p-dialog-footer {
  padding: 1rem 1.5rem !important;
  border-radius: 0 0 12px 12px !important;
  border-top: 1px solid var(--np-border-light) !important;
  background: var(--np-card) !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.75rem !important;
}

.p-confirm-dialog .p-confirm-dialog-accept.p-button-danger {
  font-family: var(--np-font) !important;
  background: #ef4444 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background var(--np-duration) !important;
}

.p-confirm-dialog .p-confirm-dialog-accept.p-button-danger:hover {
  background: #dc2626 !important;
}

.p-confirm-dialog .p-confirm-dialog-reject {
  font-family: var(--np-font) !important;
  background: var(--np-border-light) !important;
  color: var(--np-text-secondary) !important;
  border: 1.5px solid var(--np-border) !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all var(--np-duration) !important;
}

.p-confirm-dialog .p-confirm-dialog-reject:hover {
  background: var(--np-border) !important;
  color: var(--np-text-primary) !important;
}

/* ─────────────────────────────────────────────────────────
   STAGGERED ANIMATION FOR ITEMS
   ───────────────────────────────────────────────────────── */
.hc-np-item:nth-child(1) {
  animation-delay: 0.04s;
}

.hc-np-item:nth-child(2) {
  animation-delay: 0.08s;
}

.hc-np-item:nth-child(3) {
  animation-delay: 0.12s;
}

.hc-np-item:nth-child(4) {
  animation-delay: 0.16s;
}

.hc-np-item:nth-child(5) {
  animation-delay: 0.2s;
}

.hc-np-item:nth-child(6) {
  animation-delay: 0.24s;
}

.hc-np-item:nth-child(7) {
  animation-delay: 0.28s;
}

.hc-np-item:nth-child(8) {
  animation-delay: 0.32s;
}

.hc-np-item:nth-child(9) {
  animation-delay: 0.36s;
}

.hc-np-item:nth-child(10) {
  animation-delay: 0.4s;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hc-notifications-page {
    padding: 1.25rem 1rem 3rem;
  }
  .hc-np-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }
  .hc-np-title {
    font-size: 1.25rem;
  }
  .hc-np-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hc-np-tabs {
    width: 100%;
    justify-content: stretch;
  }
  .hc-np-tab {
    flex: 1;
    justify-content: center;
    font-size: 0.8125rem;
    padding: 0.375rem 0.5rem;
  }
  .hc-np-search {
    width: 100%;
  }
  .hc-np-search-input.p-inputtext {
    width: 100% !important;
  }
  .hc-np-item {
    padding: 1rem;
    gap: 0.75rem;
  }
  .hc-np-item-icon {
    width: 40px;
    height: 40px;
  }
  .hc-np-item-icon img {
    width: 40px;
    height: 40px;
  }
  .hc-np-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .hc-np-item-content h4 {
    font-size: 0.875rem;
  }
  .hc-np-item-content p {
    font-size: 0.8125rem;
  }
  .hc-np-item-actions {
    opacity: 1;
    /* always visible on mobile */
  }
  .hc-np-header-right .p-button {
    font-size: 0.75rem !important;
    padding: 0.425rem 0.75rem !important;
  }
}
@media (max-width: 480px) {
  .hc-np-title {
    font-size: 1.125rem;
  }
  .hc-np-item {
    padding: 0.875rem 0.875rem;
  }
  .hc-np-item-icon {
    width: 36px;
    height: 36px;
  }
  .hc-np-paginator .p-paginator .p-paginator-current {
    display: none !important;
  }
}
/* hide orderlist default controls */
.p-orderlist-controls {
  display: none !important;
}

/* remove extra padding */
.p-orderlist-list {
  padding: 0;
  border: none;
}

/* remove item background */
.p-orderlist-item {
  padding: 0;
  border: none;
}

/* remove container border */
.p-orderlist {
  border: none;
}

.p-timeline-event-marker {
  border: 1px solid #a855f7;
  padding: 5px;
  border-radius: 50px;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%) !important;
}

.p-timeline-event-content {
  text-align: left !important;
}

.p-timeline-event-connector {
  border: 1px solid #e5e7eb;
}

.custom-rating .p-rating-icon {
  font-size: 1.2rem;
}

.hc-stage-card {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.hc-stage-card .hc-stage-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(213, 213, 213, 0.2196078431);
  padding: 10px 14px;
  border-radius: 8px 8px 0px 0px;
}

.hc-stage-card .hc-stage-card-date {
  font-size: 0.875rem;
  color: #5a5e7f;
}

.hc-stage-card .hc-stage-card-interviewer {
  font-size: 0.875rem;
  color: #5a5e7f;
}

/* ============================================
   CLIENT FORM LAYOUT
   ============================================ */
.cf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.cf-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.cf-card-icon {
  font-size: 12px;
  color: var(--primary-color, #6366f1);
  background: #ede9fe;
  padding: 10px;
  border-radius: 5px;
}

.cf-card-title {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cf-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  align-items: start;
  padding: 8px 14px;
  gap: 10px;
  border-bottom: 1px solid #f1f5f9;
}
.cf-row:last-child {
  border-bottom: none;
}

.cf-row-label {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  padding-top: 8px;
  white-space: nowrap;
}
.cf-row-label span {
  color: #ef4444;
  margin-left: 2px;
}

.cf-row-field {
  flex: 1;
}
.cf-row-field .p-inputtext,
.cf-row-field .p-dropdown,
.cf-row-field .p-inputtextarea,
.cf-row-field .hc-form-field,
.cf-row-field .hc-form-field .p-dropdown {
  width: 100%;
  font-size: 13px;
  border-radius: 6px;
}

.cf-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.cf-toggle-label {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  min-width: 115px;
}

.cf-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.cf-badge.cf-badge-green {
  background: #dcfce7;
  color: #15803d;
}
.cf-badge.cf-badge-red {
  background: #fee2e2;
  color: #b91c1c;
}

.cf-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}/*# sourceMappingURL=layout-light.css.map */