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

.header {
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.back-arrow,
.search-icon {
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

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

.search-bar input {
  border: none;
  background: none;
  outline: none;
  flex-grow: 1;
  padding: 5px;
  font-size: 16px;
}

.mic-icon {
  color: #3b5998;
  font-size: 20px;
}
.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: bolder;
}

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

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

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

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

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

.people-container {
  padding: 20px;
}
.people-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
.slider {
  display: flex;
  overflow-x: auto;
}
.card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(25, 24, 24, 0.1);
  margin-right: 10px;
  padding: 15px;
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.card .username {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}
.mutual-friends {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.mutual-friends img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -10px;
}
.mutual-friends span {
  margin-left: 10px;
  color: gray;
  font-size: 14px;
}
.card-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.card-buttons button {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 5px;
}
.add-friend-button {
  background-color: #3b5998;
  color: white;
}
.remove-button {
  background-color: #ccc;
  color: black;
}
.see_all_button {
  background-color: #bfbebe;
  color: #000;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 10px;
}

/* Reels Container */
.reels-container {
  padding: 20px;
}
.reels-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.reels-card {
  position: relative;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(25, 24, 24, 0.1);
  margin-right: 10px;
  min-width: 185px;
  max-width: 185px;
  flex-shrink: 0;
}
.reels-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.fa-circle-play {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  padding: 5px;
}

/* More to try */

.try-facebook-container {
  background-color: #f0f0f0;
  padding: 20px;
  margin-top: 20px;
}

.try-facebook-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.try-facebook-content {
  display: flex;
  gap: 20px;
}

.try-facebook-column {
  flex: 1;
  background-color: white;
  padding: 10px;
  margin: 0 5px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 10px;
}

.try-facebook-column .icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.try-facebook-column span {
  display: block;
}
