.navbar {
  width: 100%;

  & .navlink--active {
    background-color: var(--color-primary);
    color: white;
    border-radius: 9999px;
    padding: var(--size-1) var(--size-3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

.navbar__top {
  position: fixed;
  z-index: 10;
  top: var(--size-4)
}

.navbar__top-menu {
  position: fixed;
  z-index: 10;
  top: var(--size-20);
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.4s ease-in-out,
    opacity 0.3s ease,
    transform 0.3s ease;

}
.navbar__top-menu--open {
  max-height: max-content;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar__top-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  padding: var(--size-2) var(--size-4);
  border: 1px solid #DFDFDF;
  border-radius: var(--size-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
