body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: auto;
  margin: 0 auto;
  padding: 0 3px;
}

.header-title {
  font-size: 24px;
  color: #333;
  margin-left: 15px;
}

.header-left {
  display: flex;
  align-items: center;
}

.back-arrow,
.search-icon {
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

.profile-header {
  background-color: white;
  text-align: left;
  padding: 5px 0;
  border-bottom: 5px solid lightgray;
}

.cover-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.profile-picture img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid white;
  margin-top: -50px;
  margin-left: 10px;
  object-fit: cover;
}

.profile-name {
  font-size: 24px;
  color: #333;
  margin: 10px 0 5px;
  margin-left: 10px;
}

.profile-bio {
  font-size: 16px;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 0 10px;
}

.profile-frnds {
  font-size: 16px;
  color: gray;
  margin-left: 10px;
}

.profile-frnds-num {
  color: #000;
  font-weight: bold;
}

.profile-buttons {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  padding: 10px 10px 0;
}

.add-story-button,
.edit-profile-button,
.more-options-button {
  border: none;
  cursor: pointer;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 10px;
}

.add-story-button {
  background-color: #3b5998;
  width: 50%;
}

.edit-profile-button {
  background-color: #cacaca;
  color: #000;
  width: 40%;
}

.more-options-button {
  background-color: #cacaca;
  color: #000;
  width: 10%;
}

.profile-buttons button i {
  margin-right: 5px;
}

.profile-nav {
  background-color: white;
  border-bottom: 1px solid #ccc;
}
.posts-list {
  color: #3b5998 !important;
  border-bottom: 2px solid #3b5998;
}
.profile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}

.profile-nav li {
  margin: 0;
}

.profile-nav a {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  display: block;
}
.follow-info {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-left: 15px;
  color: #000;
  font-size: 14px;
}

.follow-info i {
  font-size: 18px;
  margin-right: 25px;
}

.friends-container {
  background-color: white;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.friends-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.friends-title {
  font-size: 16px;
  color: #333;
}

.friends-count {
  font-size: 16px;
  color: gray;
  margin-bottom: 10px;
}

.see-all-link {
  color: #3b5998;
  text-decoration: none;
  font-size: 14px;
}

.friends-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.friend {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.friend img {
  width: 80px;
  height: 80px;
  border-radius: 10%;
  margin-bottom: 5px;
}

.friend-name {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  text-align: justify;
}
.find-friends-button {
  background-color: #eee;
  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;
}
.profile-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.status-update-container {
  background-color: white;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.status-update-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.status-update-box {
  display: flex;
  flex-direction: column;
}

.status-update-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.status-profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.status-input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 14px;
  background-color: #eee;
}

.status-icon {
  font-size: 20px;
  color: #888;
}

.status-update-actions {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.status-action {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
}

.status-action i {
  margin-right: 5px;
}

.big-img {
  font-size: 25px;
}

.post-section {
  border: 1px solid #ccc;
  padding: 15px;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

.post-info {
  display: flex;
  align-items: center;
}

.post-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.post-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.post-name,
.post-metadata {
  color: #555;
  font-size: 12px;
  margin-right: 5px;
}

.post-name {
  font-weight: bold;
}

.post-options {
  display: flex;
  align-items: center;
}

.post-three-dots,
.post-close {
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
}

.post-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-caption {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 15px;
}

.post-image {
  width: 100%;
  max-height: 400px;
  border: none;
  object-fit: cover;
}

/* Reaction Section Styles */
.reaction-section {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 20px;
  height: 20px;
  margin-top: 10px;
  padding: 5px 10px;
  margin-left: 10px;
  margin-right: 10px;
}

/* Comment Share Box Styles */
.comment-share-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  width: auto;
}

/* Like, Comment, Share Box Styles */
.like-box,
.comment-box,
.share-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 20px;
  width: 110px;
  height: 40px;
}

.like-box:active,
.comment-box:active,
.share-box:active {
  transform: scale(0.9);
}

.like-box i,
.comment-box i,
.share-box i {
  font-size: 24px;
  margin-right: 5px;
}

.like-box span,
.comment-box span,
.share-box span {
  margin-left: 5px;
}
