#navigation {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--nav-background);
  color: var(--nav-text);
}

.navigation-brand {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 82px;

  background: #000;

  border-bottom: 1px solid #1f1f1f;
}

.navigation-logo {
  display: block;
  width: 110px; /* or whatever size you want */
  height: auto;
  max-width: 100%;
}

.navigation-menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  padding: 16px 10px;
}

.navigation-section-label {
  padding: 0 12px 8px;
  color: var(--text-subtle);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.navigation-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  border-radius: 7px;
  background: transparent;
  padding: 0 12px;
  color: var(--nav-text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.navigation-item:hover {
  background: var(--nav-hover);
  color: var(--text);
}

.navigation-item.active {
  background: var(--nav-active);
  color: var(--primary);
  font-weight: 700;
}

.navigation-item.active::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -10px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--primary);
  content: "";
}

.navigation-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.navigation-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.navigation-footer {
  margin-top: auto;

  padding: 14px;

  border-top: 1px solid var(--border);

  background: #fff;
}

.navigation-footer > .navigation-item {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  color: #ffffff;
}

.navigation-footer > .navigation-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navigation-user {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.36);
  padding: 10px;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.navigation-user-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.navigation-user-details {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}

.navigation-user-details strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navigation-user-details span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.navigation-user-menu {
  color: rgba(255, 255, 255, 0.75);
}

.navigation-settings {
  display: flex;

  align-items: center;

  gap: 12px;

  width: 100%;

  height: 44px;

  border: none;

  border-radius: 8px;

  background: transparent;

  color: #555;

  cursor: pointer;

  transition: 0.2s;

  font-size: 13px;
}

.navigation-settings:hover {
  background: #f7f7f7;
}

.navigation-settings svg {
  width: 18px;
  height: 18px;
}
