/* Layout + navigation helpers */

:root {
  --topbar-height: 64px;
}

body.has-top-nav {
  padding-top: var(--topbar-height);
}

@media (max-width: 991.98px) {
  body.has-top-nav {
    padding-top: 56px;
  }
}

.navbar .dropdown-menu {
  min-width: 15rem;
}

.navbar .dropdown-item {
  font-size: 0.95rem;
}

.navbar-actions {
  gap: 1rem;
}

.user-chip .user-avatar {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.user-chip .user-avatar.placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logout-btn {
  letter-spacing: 0.05em;
  font-family: "Lato", "Roboto", sans-serif;
}

@media (max-width: 991.98px) {
  .navbar-actions {
    width: 100%;
  }

  .logout-form {
    width: 100%;
  }

  .logout-form .btn {
    width: 100%;
  }
}

.app-shell main {
  background-color: #f8f9fa;
  min-height: 0;
}

.app-shell footer {
  font-size: 0.9rem;
}
