 /* Global Reset & Basic Styling */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  body {
    background-color: #f0f2f5;
  }
  a {
    text-decoration: none;
    color: #050505;
  }
  li {
    list-style-type: none;
  }

  /* Top Navigation Bar */
  .top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 56px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dadde1;
    padding: 0 16px;
    z-index: 10;
  }
  .top-nav .left-section,
  .top-nav .center-section,
  .top-nav .right-section {
    display: flex;
    align-items: center;
  }
  /* Facebook Logo / Placeholder */
  .kepkai-logo {
    font-weight: bold;
    font-size: 20px;
    color: #1877f2;
    margin-right: 16px;
  }
  /* Search Bar */
  .search-bar {
    background-color: #f0f2f5;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    width: 200px;
  }
  .search-bar:focus {
    outline: none;
  }
  /* Center Icons (Home, Watch, Marketplace, Groups, etc.) */
  .center-section .icon {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    background-color: #e4e6eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .center-section .icon img {
    max-width: 20px;
    max-height: 20px;
  }
  /* Right Section (Profile, Messenger, Notifications) */
  .right-section .icon {
    margin-left: 12px;
    width: 40px;
    height: 40px;
    background-color: #e4e6eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .right-section .profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url('https://via.placeholder.com/32') center/cover no-repeat;
    margin-right: 8px;
  }
  .right-section .username {
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
  }

  /* Main Container (below the top nav) */
  .main-container {
    display: flex;
    justify-content: center;
    margin-top: 56px; /* Height of the top nav */
  }

  /* Left Sidebar */
  .left-sidebar {
    width: 280px;
    margin-right: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  .left-sidebar .sidebar-link {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .left-sidebar .sidebar-link:hover {
    background-color: #e4e6eb;
  }
  .left-sidebar .sidebar-link img {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    border-radius: 4px;
  }

  /* Center Feed */
  .center-feed {
    width: 600px;
    max-width: 600px;
    margin: 0 8px;
  }
  /* Stories Section */
  .stories-container {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 8px;
  }
  .story-item {
    width: 100px;
    height: 170px;
    background-color: #ccc;
    border-radius: 12px;
    background: url('https://via.placeholder.com/100x170') center/cover no-repeat;
    position: relative;
    cursor: pointer;
  }
  .story-profile {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: url('https://via.placeholder.com/32') center/cover no-repeat;
  }
  .create-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e4e6eb url('https://via.placeholder.com/100x170') center/cover no-repeat;
    position: relative;
  }

  /* Create Post Section */
  .create-post {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
  }
  .create-post .top {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .create-post .top .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url('https://via.placeholder.com/40') center/cover no-repeat;
    margin-right: 8px;
  }
  .create-post .top input {
    flex: 1;
    border: none;
    border-radius: 999px;
    background-color: #f0f2f5;
    padding: 10px 16px;
  }
  .create-post .top input:focus {
    outline: none;
  }
  .create-post .bottom {
    display: flex;
    justify-content: space-around;
    margin-top: 8px;
  }
  .create-post .bottom .option {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .create-post .bottom .option img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }

  /* Sample Post */
  .post {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 16px;
  }
  .post .post-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .post .post-header .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url('https://via.placeholder.com/40') center/cover no-repeat;
    margin-right: 8px;
  }
  .post .post-header .info {
    display: flex;
    flex-direction: column;
  }
  .post .post-header .info .name {
    font-weight: bold;
    font-size: 14px;
  }
  .post .post-content {
    margin-bottom: 8px;
  }
  .post .post-image {
    width: 100%;
    height: 300px;
    background: url('https://via.placeholder.com/600x300') center/cover no-repeat;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .post .post-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
  }

  /* Right Sidebar */
  .right-sidebar {
    width: 280px;
    margin-left: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  .right-sidebar .sponsored,
  .right-sidebar .contacts {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    
  }
  .right-sidebar .sponsored img,
  .right-sidebar .contacts img {
    margin-right: 8px;
    border-radius: 4px;
  }
  .right-sidebar .contacts .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .right-sidebar .contacts .contact-item:hover{
    background-color: #e4e6eb;
  }
  .right-sidebar .contacts .contact-item .contact-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url('assets/images/image1.png') center/cover no-repeat;
    margin-right: 8px;
  }
  .notification {
      text-decoration: none;
      position: relative;
      display: inline-block;
}
  .notification .badge {
      position: absolute;
      top: -10px;
      right: -10px;
      padding: 5px 10px;
      border-radius: 50%;
      background: none;
      color: red;
  }