    body {
      font-family: 'Poppins', sans-serif;
    }
    .profile-header {
      background: linear-gradient(135deg, #6C63FF, #74EBD5);
      color: white;
      border-bottom: 4px solid #574bcc;
    }
    .profile-pic {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid white;
    }
    .profile-stats {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
    }
    .profile-stats div {
      text-align: center;
    }
    .btn {
      padding: 10px 20px;
      border-radius: 5px;
      text-align: center;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .btn-primary {
      background-color: #6C63FF;
      color: white;
    }
    .btn-primary:hover {
      background-color: #574bcc;
    }
    .btn-secondary {
      background-color: #E0E0E0;
      color: black;
    }
    .profile-actions {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .post-card {
      display: flex;
      background-color: #f9f9f9;
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      flex-direction: column; /* Flex container for vertical layout */
      justify-content: space-between; /* Space between content items */
      max-height: 350px; /* Prevent excessive height */
    }
    .post-card:hover {
      transform: scale(1.05);
    }
    .post-thumbnail {
      width: 120px;
      height: 120px;
      border-radius: 8px;
      object-fit: cover;
      margin-right: 16px;
      align-self: center; /* Center thumbnail */
    }
    .post-card-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Space out content vertically */
      max-height: 100%; /* Ensure content doesn't overflow */
    }
    .post-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 8px;
      white-space: normal; /* Allow wrapping */
      overflow: hidden; /* Prevent overflow */
      text-overflow: ellipsis; /* Show "..." if the title overflows */
      max-height: 50px; /* Limit height of title */
      line-height: 1.4; /* Better line height for wrapped titles */
    }
    .post-description {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 12px;
    }
    .post-more {
      color: #6C63FF;
      font-weight: bold;
      cursor: pointer;
    }
