/* LEFT NAV (LOGO AREA) */
.nav-left {
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* LOGO */
.logo {
  width: 85px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* RIGHT NAV (BRAND + SEARCH + ACTIONS) */
.nav-right {
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 80px;
  gap: 20px;
}

/* BRAND TEXT BLOCK */
.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SEARCH BAR */
.search {
  flex: 1;
  /* takes remaining space */
  min-width: 200px;
  /* shrinks before pushing buttons */
  max-width: 450px;
  /* prevents overflowing into actions */

  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s;
}

.search:hover {
  box-shadow: var(--glow);
}

.search input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  font-size: 14px;
}

/* RIGHT BUTTONS */
.actions {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  /* prevents wrapping */
  flex-shrink: 0;
  /* prevents shrinking */
}

/* BUTTON STYLE */
.btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #eee;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* Signed-in user area */
.nav-right.signed-in .actions {
  align-items: center;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}