html {
  font-size: 13px;
  font-weight: 400;
  font-family: Inter,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.page-loading {
  margin: 0;
  height: 100%;
  overflow: hidden;
  transition: none !important;
}

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, 'sans-serif';
  background-color: #fff;
}

.page-loading .splash-screen .loading-text {
  color: #99A1B7;
  margin-left: 1.25rem;
  font-size: 1.075rem;
  font-weight: 500;
}

html[data-bs-theme='dark'] .page-loading .splash-screen {
  background-color:#77E8D2;
  color: #ffffff;
}

.splash-screen .dark-logo {
  display: none;
}

.splash-screen .light-logo {
  display: block;
}

html[data-bs-theme='dark'] .splash-screen .light-logo {
  display: none;
}

html[data-bs-theme='dark'] .splash-screen .dark-logo {
  display: block;
}

.loader {
  width: 2rem;
  height: 2rem;
  border: 0.185rem solid #1B84FF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.loader-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}

/* Sidebar active link (default/light mode) */
.app-sidebar .menu .menu-item .menu-link.active {
  transition: color 0.2s ease;
  background-color: transparent !important;
  color: #F57909 !important; /* Button color for highlight */
    text-decoration: none !important;
}

/* Sidebar active link (dark sidebar mode) */
[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link.active {
  transition: color 0.2s ease;
  box-shadow: 20px 20px;
      text-decoration: none !important;
font-weight: 300 !important;
  background-color:#c4620c !important; /* Light background for contrast */
  color: transparent !important; /* Footer dark text color */
}

/* Sidebar active link title (dark sidebar mode) */
[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link.active .menu-title {
  color: white !important; /* Footer dark color for text */
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* Sidebar active link icon (dark sidebar mode) */
[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link.active .menu-icon i {
  /* color: white !important; Secondary color for icons */
  color: #003A6B;
  font-weight: 600 !important;
}

/* Sidebar normal link title (dark sidebar mode) */
[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link .menu-title {
  color: white !important; /* White text on dark sidebar */
  font-weight: 600 !important;
      text-decoration: none !important;


}

[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link .menu-icon i {
  color: white !important; /* White icon on dark sidebar */
}

/* Sidebar link hover state */
.app-sidebar .menu .menu-item .menu-link:hover,
[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link:hover {
  color:transparent  !important; /* Slightly lighter button color on hover */
}

.pagination-color {
    background-color: white;
    color: white; 
    transition: background-color 0.3s ease;
  }
  
  .pagination-color:hover {
    background-color: white; 
  }

  
  .number-color {
    color: white;
    background-color: white; 
  }
  .hide-scrollbar {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* Internet Explorer and Edge */
}

.hide-scrollbar::-webkit-scrollbar { /* Chrome, Safari, Opera */
  display: none;
}