
body {
  margin: 0;
  padding: 0;
  background: #e5e5e5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #000;
}

a {
  color: #3b5998;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Top Header Bar */
.header {
  background: #3b5998;
  color: white;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  font-size: 24px;
  font-weight: bold;
}

/* Main Container */
.container {
  width: 760px;
  margin: 20px auto;
  background: #fff;
  border: 1px solid #ccc;
  display: flex;
}

/* Sidebar */
.sidebar {
  width: 220px;
  border-right: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
}

.profile-pic {
  width: 200px;
  height: 200px;
  background: #ddd;
  margin-bottom: 10px;
  overflow: hidden;            
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;          
  display: block;       
}

.section {
  border: 1px solid #d8dfea;
  margin-bottom: 10px;
}

.section h3 {
  margin: 0;
  padding: 5px;
  background: #f7f7f7;
  border-bottom: 1px solid #d8dfea;
  font-size: 12px;
}

.section .content {
  padding: 5px;
}

/* Main Content */
.main {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.status-box {
  border: 1px solid #d8dfea;
  margin-bottom: 15px;
}

.feed {
  margin-top: 10px;
  padding: 12px;
  height: 300px;
  overflow-y: auto;
}
    

.status-box button {
  float: right;
  margin: 5px;
  padding: 3px 8px;
  font-size: 11px;
  cursor: pointer;
}

.wall-post {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.wall-post:last-child {
  border-bottom: none;
}

.name {
  font-weight: bold;
  color: #3b5998;
}

.meta {
  font-size: 10px;
  color: #777;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}