.profile-menu-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: none;
  background-color: transparent;
}

.profile-menu {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 1000;
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  transition: opacity 0.2s ease-in-out;
}

.profile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-menu ul li {
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: #374151;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
}

.profile-menu ul li.company-info {
  cursor: default;
  font-weight: bold;
  color: #1f2937;
  padding: 12px 15px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 5px;
}

.profile-menu ul li.company-info:hover {
  background-color: transparent;
  color: #1f2937;
}

.profile-menu ul li.company-info img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 4px;
  object-fit: cover;
}

.profile-menu ul li:hover:not(.company-info):not(.separator) {
  background-color: #edeaea;
  color: #1f2937;
}

.profile-menu ul li a {
  text-decoration: none;
  color: inherit;
  display: block;
  flex-grow: 1;
  padding: 10px 15px;
}

.profile-menu ul li.separator {
  height: 1px;
  background-color: #e5e7eb;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .profile-menu {
    min-width: 180px;
  }

  .profile-menu ul li {
    padding: 8px 10px;
    font-size: 13px;
  }
  .profile-menu ul li.company-info {
    padding: 10px 10px;
  }
  .profile-menu ul li.company-info img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}