:root {
  --shadow: 0px 4px 16px 0px #00000040;
  --green-Color: #A8D060;
  --purple-Color: #8860D0;
  --black-color: #333333;
  --second-white: #F5F5F7;
  --second-purole: #C1C8E4;
}

section.sidebar-content-container {
  display: flex;
  gap: 5rem;
}

section.content-container {
  width: -webkit-fill-available;
  margin: 0 2% 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* sidebar style */

.sidebar-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: fit-content;
  padding: 1rem;
  background-color: var(--second-white);
  border-radius: 18px;
  margin: 0 0 0 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 10%;
  max-width: 6rem;
  align-items: center;
}

.sidebar-side a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 5rem;
  font-size: 14px;
  text-align: center;
}

.selected {
  color: var(--black-color);
  background-color: #d9d9fb;
  padding: 0.5rem;
  border-radius: 12px;
  cursor: pointer;
}

/* sidebar style */

/* dashboard content style */

.container-head {
  font-size: 1.5rem;
  margin: 1rem 0 0 1rem;
}


.hamburgerIconcontainer {
  display: none;
}

@media screen and (max-width: 1026px) {
 

  .navLeft, .navMid {
    display: block;
  }

}