.user-avatar {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.avatar-preview-container {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.avatar-remove-btn {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--fg-secondary);
}

.avatar-remove-btn:hover {
  color: var(--red);
}

.avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
