.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 0;
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user {
  font-weight: 600;
}

.logout-btn {
  cursor: pointer;
}

.logout-btn:active {
  transform: translateY(1px);
}