a {
  color: rgb(88, 87, 87);
  text-decoration: none;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.name {
  font-size: 26px;
  color: rgb(88, 87, 87);
}

.left-side {
  /* Remove the border-right property */
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  flex: 1;
  position: relative; /* Add this line */
}

.left-side::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.1px;
  background: linear-gradient(to top, transparent, 2%, #000 50%, transparent);
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  margin-bottom: 20px;
  flex: 1;
}

.right-side {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  flex: 1;
}

.options-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 50px 30px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  flex: 1;
}

.option {
  color: rgb(88, 87, 87);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
  cursor: pointer;
}

.icon {
  display: flex;
  margin-right: 10px;
  width: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background-color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}