.pretty-avatar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pretty-avatar .staff-avatar-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #23242a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 2px solid #2ec4b6;
  transition: border 0.2s;
}
.pretty-avatar .staff-avatar-preview.has-image {
  border-color: #2ec4b6;
}
.pretty-avatar .staff-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.pretty-avatar .staff-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  background: #495057;
  border-radius: 50%;
}
.pretty-avatar .staff-avatar-initials {
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
}
.pretty-avatar .staff-avatar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pretty-avatar .avatar-action {
  min-width: 120px;
  font-size: 1rem;
  border-radius: 20px;
  border: 1px solid #2ec4b6;
  color: #2ec4b6;
  background: #181a20;
  transition: background 0.2s, color 0.2s;
}
.pretty-avatar .avatar-action:hover {
  background: #2ec4b6;
  color: #fff;
}
