/* ── App Navbar ──────────────────────────────────────────────────────────── */

.app-navbar {
  background: #34495e;
  border-bottom: 1px solid #2c3e50;
  padding: .5rem 1rem;
}

.app-navbar .navbar-brand {
  color: #fff !important;
  font-size: .95rem;
}

.app-navbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #34495e, #1abc9c);
  border-radius: 8px;
  font-size: .9rem;
  border: 1px solid rgba(255, 255, 255, .15);
}

.app-navbar .nav-link {
  color: rgba(255, 255, 255, .8) !important;
  font-size: .85rem;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link.show {
  color: #fff !important;
}

.app-navbar .dropdown-menu {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  padding: .4rem;
  min-width: 180px;
}

.app-navbar .dropdown-item {
  border-radius: 6px;
  font-size: .85rem;
  padding: .45rem .75rem;
  color: #2c3e50;
}

.app-navbar .dropdown-item:hover {
  background: #ebedef;
  color: #34495e;
}

.app-navbar-user {
  color: rgba(255, 255, 255, .6);
}

.app-navbar-logout {
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  color: rgba(255, 255, 255, .85) !important;
  font-size: .8rem !important;
  padding: .3rem .75rem !important;
  border-radius: 8px !important;
}

.app-navbar-logout:hover {
  background: rgba(255, 255, 255, .2) !important;
  color: #fff !important;
}

.app-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, .3);
}

.app-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.app-footer-logo {
  height: 48px;
  width: auto;
  opacity: .35;
  filter: grayscale(1);
  transition: opacity .2s;
}

.app-footer-logo:hover {
  opacity: .6;
}
