.profile-card {
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px dashed rgb(8, 191, 223);
  padding: 4px;
  }
.iconSetting{
  width: 35px;
  height: 35px;
}
        .shimmer {
      position: relative;
      overflow: hidden;
      background: #e2e2e2;
    }

    .shimmer::after {
      content: "";
      position: absolute;
      top: 0; left: -150px;
      width: 150px;
      height: 100%;
      background: linear-gradient(to right, transparent 0%, #ffffff80 50%, transparent 100%);
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      0% { left: -150px; }
      100% { left: 100%; }
    }

    .skeleton-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }

    .skeleton-line {
      height: 15px;
      margin-bottom: 10px;
      border-radius: 4px;
      width: 200px;
    }

    .skeleton-qr {
      width: 100px;
      height: 100px;
      border-radius: 8px;
    }
    @media (max-width: 576px) {
  .profile-card {
    padding: 15px;
  }

  .skeleton-img,
  .skeleton-qr {
    width: 80px;
    height: 80px;
  }
  .skeleton-line {
    width: 150px;
  }
}
