body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #ccc;
}
.your-friends {
  margin-left: 10px;
}
.frnds-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5px 10px;
  border-bottom: 0.5px solid #ccc;
}

.frnds-search-left {
  display: flex;
  align-items: center;
}

.frnds-search-header a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
}

.frnds-search-header h2 {
  margin: 0 0 0 10px;
  font-size: 24px;
  color: #333;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: auto;
  padding: 10px;
}

.search-bar {
  display: flex;
  align-items: center;
  flex: 1;
  color: #333;
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 5px 10px;
}

.search-bar input {
  border: none;
  background: none;
  outline: none;
  padding: 5px;
  font-size: 16px;
  width: 100%;
}

.search-icon {
  height: 30px;
  width: 30px;
  cursor: pointer;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-left: 10px;
  text-decoration: none;
}

.recent-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: white;
}

.recent-text {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.see-all {
  font-size: 16px;
  color: #3b5998;
  text-decoration: none;
}

.profile-container {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: white;
  margin-bottom: 10px;
}

.profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.profile-info {
  flex-grow: 1;
}

.username {
  font-size: 16px;
  color: #333;
  flex-grow: 1;
}

.mutual-friends {
  font-size: 14px;
  color: #777;
}

.three-dots {
  font-size: 20px;
  color: #333;
  cursor: pointer;
}
