body {
	font-family: Arial, sans-serif;
	background-color: #f2f2f2;
  }
  
  header {
	background-color: #4267B2;
	color: #ffffff;
	padding: 10px 20px;
  }
  
  .header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .logo img {
	height: 40px;
  }
  
  .search-box input[type="text"] {
	padding: 10px;
	border-radius: 20px;
	border: none;
  }
  
  .search-box button {
	padding: 10px;
	border-radius: 20px;
	border: none;
	background-color: #ffffff;
	color: #4267B2;
	margin-left: 10px;
  }
  
  nav ul {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
  }
  
  nav li {
	margin-right: 20px;
  }
  
  nav li:last-child {
	margin-right: 0;
  }
  
  nav a {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
  }
  
  nav a:hover {
	text-decoration: underline;
  }
  
  main {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px;
  }
  
  .left-column {
	flex-basis: 25%;
	margin-right: 20px;
  }
  
  .user-info img {
	border-radius: 50%;
  }
  
  .user-info h2 {
	margin-left: 10px;
  }
  
  .menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
  }
  
  .menu li {
	margin-bottom: 10px;
  }
  
  .menu a {
	color: #4267B2;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
  }
  
  .right-column {
	flex-basis: 75%;
  }
  
  .status-box form {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
  }
  
  .status-box textarea {
	padding: 10px;
	border-radius: 10px;
	border: none;
	resize: none;
	margin-bottom: 10px;
	font-size: 16px;
  }
  
  .status-box button {
	padding: 10px;
	border-radius: 20px;
	border: none;
	background-color: #4267B2;
	color: #ffffff;
	font-weight: bold;
	cursor: pointer;
  }
  
  .post {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
  }
  
  .post-header img {
	border-radius: 50%;
	margin-right: 10px;
  }
  
  .post-header h3 {
	margin: 0;
	font-size: 16px;
  }
  
  .post-content {
	margin-top: 10px;
  }
  
  .post-content p {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.5;
  }
  
  .post-content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
  }
  
  .post-actions button {
	color: #4267B2;
	text-decoration: none;
	margin-right: 20px;
  }
  
  .post-actions a:hover {
	text-decoration: underline;
  }
  
  .post-actions button {
	background-color: #ffffff;
	border: none;
	margin-right: 20px;
	cursor: pointer;
  }
  
  .post-actions button:hover {
	text-decoration: underline;
  }
  
  .post-actions i {
	margin-right: 5px;
  }
  
  .comment {
	display: flex;
	margin-bottom: 10px;
  }
  
  .comment-img img {
	border-radius: 50%;
	margin-right: 10px;
  }
  
  .comment-content {
	flex-basis: 100%;
  }
  
  .comment-header h4 {
	margin: 0;
	font-size: 14px;
  }
  
  .comment-header span {
	font-size: 12px;
	color: #777777;
  }
  
  .comment-body p {
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 1.5;
  }
  
  .comment-actions {
	display: flex;
	margin-top: 5px;
  }
  
  .comment-actions a {
	color: #4267B2;
	text-decoration: none;
	margin-right: 10px;
	font-size: 12px;
  }
  
  .comment-actions a:hover {
	text-decoration: underline;
  }
  
  .comment-actions i {
	margin-right: 5px;
	font-size: 12px;
  }
 
  
  .like-button:hover {
	color: red;
  }
  
  .like-button i {
	font-size: 20px;
  }
  
  .like-count {
	font-weight: bold;
  }
  .hidden {
	display: none;
  }
  .comment-section form {
	margin: 10px 0;
  }
  
  .comment-section textarea {
	width: 100%;
	padding: 8px;
	border: none;
	border-radius: 4px;
	background-color: #f5f5f5;
	resize: vertical;
	min-height: 50px;
  }
  
  .comment-section button[type="submit"] {
	display: block;
	margin-top: 10px;
	padding: 8px;
	border: none;
	border-radius: 4px;
	background-color: #4CAF50;
	color: white;
	cursor: pointer;
  }
  
  .comment-list {
	list-style-type: none;
	padding: 0;
	margin: 10px 0 0 0;
  }
  
  .comment-list li {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px;
	margin-bottom: 10px;
  }
  
  .comment-list li:last-child {
	margin-bottom: 0;
  }
  