/* Menu Bar Styles */

#menubar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30px;
  background: var(--menu-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 5000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-left,
.menu-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 8px;
  margin: -2px -8px;
}

.apple-icon {
  font-size: 16px;
}

#active-app-name {
  font-weight: 700;
}

