.profile-wrapper {
  position: relative;
  display: inline-block;
}

#profile-button {
  width: 56px;
  height: 56px;
  border: solid 3px var(--primary-color);
  border-radius: 50%;
  color: var(--greeting-name-and-hover);
  font-weight: bold;
  font-size: 16px;
}

.profile-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 135%;
  width: 120px;
  right: -60%;
  background: var(--primary-color);
  border: 1px solid #ccc;
  border-radius: 16px 0 16px 16px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateX(20px);
  visibility: hidden;
  transition: all 0.1s ease;
}

.profile-dropdown.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.profile-dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--user-icon);
}

.profile-dropdown a:hover {
  background: var(--sidebar-bg-hover);
}

.profile-dropdown .mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .profile-dropdown {
    top: 120%;
    right: -40%;
  }

  .profile-dropdown .mobile-only {
    display: block;
  }
}
