/* Editor Header - Based on Organizer Header but fixed for Map View */

.editor-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #4a5fc1;
  color: #fff;
  padding: 0 24px;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.editor-header-right {
  display: flex;
  align-items: center;
}

.editor-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.notification-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  transition: opacity 0.2s;
}

.notification-btn:hover {
  opacity: 0.8;
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 4px;
  background: #ff4d4f;
  color: white;
  font-size: 10px;
  font-weight: bold;
  height: 16px;
  min-width: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid #4a5fc1;
  transform: translate(50%, -20%);
}

.editor-avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding: 0;
}

.editor-avatar-btn:hover {
  opacity: 0.8;
}

/* User Menu Panel Adjustment for this header */
/* No overrides needed, using shared .menu-popup styles */

#user-menu {
  display: none;
}

/* ── Mobile Responsive ── */
@media (max-width: 480px) {
  .editor-header {
    padding: 0 10px;
  }
  .editor-badge {
    gap: 8px;
  }
}
