.app-menu {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.app-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-logo {
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: #3a1f14;
}

.hamburger-btn {
  display: none;
  background: #3a1f14;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.4rem;
  cursor: pointer;
}

.app-nav {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.app-nav a {
  text-decoration: none;
  color: #3a1f14;
  font-weight: 600;
}

.app-nav a:hover {
  color: #b66a3c;
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: block;
  }

  .app-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
  }

  .app-nav.open {
    display: flex;
  }
}
.app-sidebar a.active {
  background: rgba(184, 92, 45, 0.12);
  color: #b85c2d;
  font-weight: 800;
}

.app-sidebar a.logout-link {
  margin-top: 16px;
  color: #b42318;
  font-weight: 800;
}

.app-sidebar a.logout-link:hover {
  background: rgba(180, 35, 24, 0.1);
}
.app-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.app-logo{
  width:42px;
  height:42px;
  object-fit:contain;
}