.artel-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f2f5;
  transition: box-shadow 0.2s;
}

.artel-avatar:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.artel-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar .artel-avatar {
  width: 100% !important;
  height: 100% !important;
  border: none;
  box-shadow: none;
}

.avatar-upload-zone {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.avatar-upload-zone .avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.avatar-upload-zone:hover .avatar-overlay {
  opacity: 1;
}

.avatar-overlay svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
