
    .post {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin: 0 auto 20px;
      padding: 15px;
      max-width: 600px;
      position: relative;
    }
    .post-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    .profile-pic {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 10px;
    }
    .author-info {
      display: flex;
      flex-direction: column;
    }
    .author-name {
      font-weight: bold;
    }
    .post-date {
      font-size: 0.85em;
      color: #777;
    }
    .post-text {
      margin: 10px 0;
    }
    .post-image {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
    }
    .post-stats {
      display: flex;
      justify-content: space-between;
      font-size: 0.9em;
      color: #555;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 8px 0;
      cursor: pointer;
    }
    .post-actions {
      display: flex;
      justify-content: space-around;
      margin-top: 10px;
      position: relative;
    }
    .action-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1em;
      color: #555;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .action-btn:hover {
      color: #1877f2;
    }
    .comments {
      display: none;
      margin-top: 10px;
    }
    .comment {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
    }
    .comment img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 10px;
    }
    .comment-content {
      background: #f0f2f5;
      padding: 8px 12px;
      border-radius: 18px;
      max-width: 80%;
    }
    .comment-content strong {
      display: block;
      margin-bottom: 4px;
    }
    .popup {
      display: none;
      position: absolute;
      bottom: 80px;
      left: 20px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      z-index: 10;
      width: 250px;
    }
    .popup h4 {
      margin: 0 0 8px;
    }
    .liker {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .liker img {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      margin-right: 8px;
    }
    .liker span:first-of-type {
      flex-grow: 1;
    }
    .new-comment {
      display: none;
      margin-top: 10px;
    }
    .new-comment textarea {
      width: 100%;
      border-radius: 10px;
      padding: 10px;
      border: 1px solid #ccc;
      resize: none;
    }
    .new-comment button {
      margin-top: 5px;
      padding: 6px 12px;
      border-radius: 20px;
      background: #1877f2;
      color: white;
      border: none;
      cursor: pointer;
    }
    .reactions-box {
      display: none;
      position: absolute;
      bottom: 40px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 5px 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      z-index: 20;
      /*display: flex;*/
      gap: 8px;
      transform: translateX(-50%);
      left: 50%;
    }
    .reactions-box span {
      cursor: pointer;
      font-size: 20px;
      transition: transform 0.1s ease;
    }
    .reactions-box span:hover {
      transform: scale(1.3);
    }

    @media (max-width: 600px) {
      .post-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .post-actions {
        flex-direction: column;
        gap: 6px;
      }
      .popup {
        width: 90%;
        left: 5%;
      }
    }