@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  body {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; /* Default weight */
    letter-spacing: 0.45px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    color: #333; /* Never use pure black with thin fonts */
  }


  .form-control {

    background-color: #f5f5f5 ! important;
}


div.dt-buttons {
  float: right;
  margin-left: 0;
  padding-left: 0;
}




.nav-iconx {
  /* Icon styling */
  font-weight: 600; /* Adjust font weight as needed (400, 600, 700, etc.) */
  
  /* Background styling */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem; /* Adjust size as needed */
  height: 1.9rem; /* Adjust size as needed */
  position: relative;
}

.nav-iconx::before {
  /* Ensure the icon stays on top of the background */
  position: relative;
  z-index: 2;
}

.nav-iconx::after {
  /* Background image with opacity */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4a90e2; /* Fallback color if image doesn't load */
  background-blend-mode: overlay; /* Blend color with image */
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Adjust opacity (0-1) */
  border-radius: 50%; /* Makes it circular - remove if not needed */
  z-index: 1;
}



/* Vertical Menu Base Styles */
.vertical-menu {

  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.sidebar-menu-scroll {
  height: calc(100vh - 60px);
  overflow-y: auto;
}

/* Collapsed State Styles */
.vertical-menu.collapsed {
  width: 70px;
}

.vertical-menu.collapsed .navbar-brand-box a {
  display: none;
}

.vertical-menu.collapsed .menu-title,
.vertical-menu.collapsed .menu-item {
  display: none;
}

.vertical-menu.collapsed .nav-iconx {
  font-size: 1.1rem;
  margin-right: 0;
}

.vertical-menu.collapsed .metismenu a {
  padding: 0.75rem 1.25rem;
  text-align: center;
  justify-content: center;
}

.vertical-menu.collapsed .metismenu li > a > i {
  margin-right: 0;
}

/* Main Content Adjustment */
.main-content {
  margin-left: 250px;
  transition: all 0.3s ease;
}

.vertical-menu.collapsed ~ .main-content {
  margin-left: 70px;
}

/* Toggle Button Position */
.vertical-menu-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1001;
}

.vertical-menu.collapsed .vertical-menu-btn {
  position: relative;
  right: auto;
  top: auto;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}