/* .sidebar-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
} */

.dashboard {
  width: 100%;
  position: relative;
  background-color: #f3f5f8;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  text-align: left;
  font-size: 40px;
  color: #37375c;
  font-family: Inter;
}

.reports1.active {
  background-color: #e6e9f2; /* or any highlight color you prefer */
  border-left: 4px solid #4339f2;
  font-weight: bold;
}

.reports1 {
  align-self: stretch;
  border-radius: 9.24px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 13px 15px;
  width: 100%;
}

/* Toggle Button */
.sidebar-toggle-button {
  position: relative;
  top: 9px;
  left: 20px;
  z-index: 1100;
  width: 32px;
  cursor: pointer;
}
.sidebar-toggle-button1 {
  position: relative;
  top: 23px;
  left: 20px;
  z-index: 1100;
  width: 32px;
  cursor: pointer;
}
.reports-parent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.icon-parent {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.tabs {
  position: absolute;
  top: 0px;
  left: 245px;
  border-radius: 8px;
  background-color: #fff;
  width: 304px;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 25px;
  box-sizing: border-box;
  gap: 20px;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.isam {
  font-weight: bold;
  font-size: 24px;
}

.vector-icon {
  width: 24px;
  height: 24px;
}

.sidebar-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 1001;
  width: 32px;
}

.main-navigation-dashboard {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #f4f4f4;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 60px;
}

.main-navigation-dashboard.open {
  left: 0;
}

/* Sidebar Wrapper */
.sidebar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 304px;
  height: 100%;
  z-index: 1001;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}

.sidebar-wrapper.open {
  transform: translateX(0);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

.icon,
.icon1,
.icon2,
.vector-icon {
  width: 24px;
  height: 24px;
}

.sidebar-menu,
.sidebar-menu1,
.sidebar-menu4 {
  font-size: 16px;
}
