  :root {
      --primary-color: #258cf4;
      --primary-hover: #1976d2;
  }


  body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      /* box-sizing: border-box; */
  }

  .avatar-wrapper {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      overflow: hidden;
      background-color: #f1f3f5;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e0e0e0;
  }

  .avatar-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* 🔥 KEY FIX */
      border-radius: 50%;
  }

  .avatar-wrapper:hover {
      box-shadow: 0 0 0 2px rgba(13, 110, 253, .25);
  }

  .profile-avatar-wrapper {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      border: 2px solid #e0e0e0;
      background-color: #f8f9fa;
      cursor: pointer;
  }

  .profile-avatar {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
  }

  /* Camera Icon */
  .camera-icon {
      position: absolute;
      bottom: 4px;
      right: 4px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
  }

  .camera-icon:hover {
      background: rgba(0, 0, 0, 0.8);
  }


  .cert-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #edf0f4;
      transition: all .25s ease;
      cursor: pointer;
  }

  .cert-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  }

  .cert-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
  }

  .text-xs {
      font-size: 12px;
  }

  .createCertificate:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s ease;
  }

  .dropdown-menu {
      scrollbar-width: thin;
  }