.fi-sidebar-nav-groups {
  row-gap: 0 !important;
}

.custom-icon:hover {
  color: white !important;
}



@media screen and (min-width: 1140px) {
  .fi-global-search {
    position: absolute !important;
    left: 2px !important;
  }
}

.fi-sidebar-nav {
  background-color: rgb(34, 197, 94) !important;
  border-top-right-radius: 70px !important;
  direction: rtl !important;
}

.fi-sidebar-nav-groups {
  direction: ltr !important;
}

.fi-sidebar-nav::-webkit-scrollbar-track {
  background-color: rgb(34, 197, 94) !important;
}

.fi-sidebar-nav::-webkit-scrollbar {
  width: 8px;
}

.fi-sidebar-nav::-webkit-scrollbar-thumb {
  background-color: #caf3c5;
  border-radius: 4px;
}

.fi-sidebar-nav .fi-sidebar-item-label {
  color: white !important;
}

.fi-sidebar-nav .fi-sidebar-item-active a.fi-sidebar-item-button,
.fi-sidebar-nav .fi-sidebar-item-active a.fi-sidebar-item-button:hover {
  background-color: #046735 !important;
}

.fi-sidebar-nav .fi-sidebar-item-icon {
  color: white !important;
}

.fi-sidebar-nav .fi-sidebar-group-label {
  color: white !important;
}

.fi-sidebar-nav .fi-sidebar-group-icon {
  color: white !important;
}

.fi-sidebar-nav a.fi-sidebar-item-button:hover {
  background-color: #046735 !important;
}

.fi-sidebar-nav .fi-sidebar-group-collapse-button {
  color: white !important;
}

.fi-sidebar-nav .fi-dropdown .fi-dropdown-trigger svg {
  color: white !important;
}

.fi-sidebar-nav .fi-dropdown .fi-dropdown-trigger button:hover {
  background-color: #046735 !important;
}

/*.fi-dropdown.fi-user-menu button:hover {
  background-color: white !important;
}*/

/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* Base card styles */
.custom-stat-card {
  font-family: 'Instrument Sans', sans-serif;
  height: 150px;
}

/* Header section */
.stat-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*padding: 16px 12px 0;*/
  gap: 8px;
  width: 100%;
  /*height: 38px;*/
}

.stat-icon {
  width: 20px;
  height: 20px;
  color: #737373;
}

.stat-icon svg {
  width: 100%;
  height: 100;
}

/* Value section */
.stat-value {
  padding: 0 16px;
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  color: #262626;
}

/* Description section */
.stat-description {
  position: absolute;
  left: -8px;
  bottom: 16px;
  width: fit-content;
  height: 34px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 8px;
  gap: 4px;
  background: var(--trend-bg);
  border: 0.5px solid var(--trend-border);
  border-radius: 6px 6px 6px 0px;
}

.description-text {
  font-style: normal;
  font-weight: 500;
  color: var(--trend-color);
}

.description-icon {
  width: 16px;
  height: 16px;
  color: var(--trend-color);
}

.description-icon svg {
  width: 100%;
  height: 100%;
}

/* Trend indicator triangle */
.trend-indicator {
  position: absolute;
  left: -1px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid var(--trend-border);
}