body {
  margin: 0;
}

#sidebar {
  font-family: 'Inter';
  z-index: 8;
  background-color: #2a3647;
  color: #a4a7ab;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 232px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

#sidebar_logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.sidebar_link {
  text-decoration: none;
  color: #a4a7ab;
}

#sidebar_categories {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  margin: 160px 0;
  gap: 15px;
}

.sidebar_category {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  width: 100%;
  height: 48px;
  cursor: pointer;
}

.sidebar_category:hover {
  background-color: #2a3b54;
}

.active_category {
  background-color: #091931;
  color: #ffffff;
  pointer-events: none;
}

.active_category img {
  filter: brightness(0) invert(1);
}

.sidebar_category_line {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.sidebar_category_line a {
  text-decoration: none;
  color: inherit;
}

.category_img {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#sidebar_policies {
  flex: 1;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 30%;
  gap: 12px;
}

#sidebar_policies a {
  text-decoration: none;
  color: #919296;
}

#sidebar_policies a:hover {
  color: #29abe2;
}

#topbar {
  z-index: 10;
  font-family: 'Inter';
  position: fixed;
  top: 0;
  right: 0;
  left: 232px;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  background-color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

#topbar_text {
  padding-left: 8%;
}

#topbar_icons {
  padding-right: 40px;
  display: flex;
  gap: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

#topbar_Icons_Username {
  width: 50px;
  height: 50px;
  border: 3px solid black;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #29abe2;
  cursor: pointer;
}

#popupBar {
  position: fixed;
  top: 96px;
  right: 40px;
  width: 130px;
  height: 86px !important;
  border-radius: 20px 0 20px 20px;
  box-shadow: 0 0 4px;
  background-color: #2a3647;
  color: #cdcdcd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter';
  gap: 12px;
  z-index: 999;
}

#popupBar a {
  text-decoration: none;
  color: #cdcdcd;
  font-size: 16px;
  font-weight: 400;
}

#popupBar a:hover {
  color: #ffffff;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}
