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

.header {
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.messenger-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5px 10px;
}

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

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

.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: #777 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px !important;
  margin-left: 10px;
  text-decoration: none;
}

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

.suggested-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: 33px;
  height: 33px;
  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;
}
