.profile-details {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgb(94, 86, 236);
  gap: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.profile-details:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.profile-picture {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hide image completely if src is empty */
.profile-picture:not([src]),
.profile-picture[src=""] {
  display: none;
}

.username {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
  margin-left: 24px;
  white-space: nowrap;
}
