.container-facebook {
  height: 100vh;
  max-width: 100vw;
  font-family: poppins, sans-serif;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-y: scroll;
  height: 90%;
  width: 90%;
}

.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(#ffffff, transparent);
  z-index: 999;
}

.main-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(transparent, #ffffff);
  z-index: 999;
}

.main-content::-webkit-scrollbar {
    width: 13px;
}
        
.main-content::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
}

.main-content::-webkit-scrollbar-thumb {
    border-radius: 8px;
  border: 3px solid transparent;
    background-clip: content-box;
    background-color: #6559d5;
}

/* .main-content::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.main-content::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.main-content::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
} */

.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sidebar-title a {
  text-decoration: none;
  color: #1876f2;
  font-size: 12px;
}

.title {
  margin-bottom: 1rem;
}

.pic {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
}

.user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-username {
  display: flex;
  justify-content: center;
}

.user-profile img {
  width: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-profile p {
  margin-bottom: -5px;
  font-weight: 500;
  color: #626262;
}

.post-container {
  /* width: 700px; */
  height: fit-content;
  flex-basis: 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  color: #626262;
  margin: 20px 20px;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25); 
  box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
}

.post-img {
  width: 100%;
  max-height: 67.5rem;
  border-radius: 10px;
  margin-bottom: 5px;
  object-fit: cover;
}

.post-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-row a {
  color: #9a9a9a;
}

.post-row {
  margin-bottom: 1rem;
}

.post-row-video-add {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .right-sidebar {
    display: none;
  }
  .left-sidebar {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .post-container {
    flex-basis: 45%;
  }
}

@media screen and (max-width: 600px) {
  .post-container {
    flex-basis: 100%;
  }
}