@import '../../scss/variables.scss';

.profile-container {
  .profile-picture-wrapper {
    margin: auto;
    position: relative;
    width: fit-content;

    .remove-profile-pic {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 100%;
      color: #fe3d6c;
      cursor: pointer;
      font-size: 12px;
      height: 24px;
      padding: 3px;
      position: absolute;
      right: 0;
      top: 10px;
      width: 24px;
    }

    img {
      border-radius: 100%;
      height: 100px;
      object-fit: cover;
      width: 100px;
    }
  }

  .profile-navigation {
    ul {
      list-style: none;
      margin: 0;
      padding: 0;

      li {
        border-bottom: 1px solid #eceeef;

        &:hover {
          background-color: #f7f7f7;
        }

        &:last-child {
          border-bottom: none;
        }

        a {
          display: inline-block;
          color: #333333;
          font-size: 14px;
          padding: 10px 20px;
          text-decoration: none;
          width: 100%;

          &.active span {
            color: var(--color-primary);
          }

          i {
            margin-right: 20px;
            width: 16px;
          }
        }
      }
    }
  }

  .profile-content .card {
    margin-bottom: 15px;
  }
}