.resume-profile-layout {
  width: 100%;
  overflow-x: scroll;
}

.profile-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px 20px;
}

.profile-item .profile-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.profile-item .profile-info .profile-image span {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.profile-item .profile-info .profile-image span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-item .profile-info .profile-details {
  margin-left: 20px;
}

.profile-item .profile-info .profile-details span {
  display: block;
  font-size: 12px;
  color: #999999;
}

.profile-item .profile-info .profile-details span:first-child {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}

.profile-item .actions {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.profile-item .actions .delete {
  color: #ff0000;
  background: none;
}

.profile-item .actions .button-primary-inverted {
  padding: 10px;
}
