/* =============================== */
/* SOCIAL PAGE LAYOUT STYLES       */
/* =============================== */

/* ---------- MAIN CONTAINER ---------- */
.social-container {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 20px;
    width: 95%;
    max-width: 1300px;
    margin: 30px auto;
    padding: 10px 0;
    box-sizing: border-box;
}



/* ================= LEFT PANEL ================= */
.left-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-panel h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}


.user-profile .username {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}


.user-profile .profile-pic-circle {
    flex-shrink: 0;
}


.user-profile #edit-profile-btn {
    margin-left: auto;                 
    padding: 6px 12px;
    background-color: #ff9800;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.user-profile #edit-profile-btn:hover {
    background-color: #e68900;
}

/* ================= USER PROFILE WRAPPER ================= */
/* ================= LEFT PANEL ================= */
.left-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-panel h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}


/* ================= USER PROFILE WRAPPER ================= */
.user-profile {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    background-color: #fff;
    position: relative;
    padding: 15px;
}

/* Banner */
.user-profile .profile-banner {
    width: 100%;
    height: 100px;
    background-color: #dcdcdc; /* default banner color */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Profile pic inside banner, bottom-center */
.user-profile .profile-banner .profile-pic-circle {
    position: absolute;
    bottom: -25px;  /* overlap banner bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #89898a;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

/* Online status dot */
.user-profile .profile-pic-circle .online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #28a745; /* green for online */
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

/* Profile info below banner */
.user-profile .profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px; /* space for profile pic overlap */
    gap: 5px;
}

/* Username + verified star */
.user-profile .username-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-profile .username {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.user-profile .verified-icon {
    color: #3498db; /* nicer blue */
    font-size: 1rem;
}

/* Followers info */
.user-profile .followers-info {
    font-size: 0.9rem;
    color: #555;
}

/* Edit button */
.user-profile #edit-profile-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    background-color: #ff9800;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.user-profile #edit-profile-btn:hover {
    background-color: #e68900;
}

/* ================= STORIES & FOLLOWERS ================= */
.stories-section,
.followers-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.story-list,
#followers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-list div,
#followers-list li,
.story-item {
    padding: 8px;
    border-radius: 8px;
    background-color: #f4f6f8;
    cursor: pointer;
    transition: background 0.2s;
}

.story-list div:hover,
#followers-list li:hover,
.story-item:hover {
    background-color: #e0e4e8;
}

/* New Story Button */
#add-story-btn {
    padding: 6px 12px;
    background-color: #ff9800;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

#add-story-btn:hover {
    background-color: #e68900;
}










/* ================= CENTER PANEL ================= */
.center-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Top Navigation Icons */
.top-nav-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    padding: 10px 15px; 
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Individual Nav Icon */
.nav-icon {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #333;
    transition: color 0.2s, transform 0.2s;
}

.nav-icon:hover {
    color: #007bff;
    transform: scale(1.1);
}


/* Stories Section */
/* ================= STORIES ================= */
/* ================= STORIES ================= */
.stories-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.stories-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

/* Horizontal scroll container for stories row */
.story-list {
    display: flex;
    flex-direction: row;       /* ensure horizontal layout */
    gap: 10px;
    overflow-x: auto;          /* allow horizontal scroll */
    padding-bottom: 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide default scrollbar (optional) */
.story-list::-webkit-scrollbar {
    height: 6px;
}
.story-list::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* Each story item in the row */
.story-item {
    flex: 0 0 auto;            /* prevent shrinking */
    display: flex;
    flex-direction: column;    /* keep pic above username */
    align-items: center;
    width: 60px;               /* width of each story */
    cursor: pointer;
    transition: transform 0.2s;
}

.story-item:hover {
    transform: scale(1.1);
}

/* Profile picture circle inside story */
.story-item .profile-pic-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;        /* circular */
    background-color: #89898a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    flex-shrink: 0;
}

/* Story username below the circle */
.story-item .story-username {
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}




/* ===============================
   NEW POST
=============================== */
.new-post {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s;
}

.new-post:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Post type buttons */
.post-type-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.post-type-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: #f4f6f8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: background 0.2s, transform 0.2s;
}

.post-type-btn:hover {
    background-color: #e0e4e8;
    transform: translateY(-2px);
}

.post-type-btn.live-btn {
    background-color: #ff4d4f;
    color: #fff;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.post-type-btn.live-btn:hover {
    background: linear-gradient(135deg, #ff4d4f, #ff6b6b);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255,77,79,0.4);
}

/* Textarea */
.new-post textarea {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s, box-shadow 0.2s;
}

.new-post textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
    outline: none;
}





/* ===============================
   POSTS FEED
=============================== */
#posts-feed {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.post-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Post header */
.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.profile-pic-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
}

.post-user-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-user-info strong {
    font-size: 1rem;
    color: #222;
}

.post-time {
    font-size: 0.85rem;
    color: #777;
}









/* -------------------------------
   Post Header & Options Menu
------------------------------- */

/* 3-dot options button */
.post-options-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s ease;
}
.post-options-btn:hover {
    color: #e04344;
}

/* Overlay to block background and center menu at bottom */
/* Overlay to block background and bottom-align menu */
#post-actions-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
    justify-content: center; /* center horizontally */
    align-items: flex-end;   /* bottom alignment for slide-up */
}

/* Slide-up fullscreen menu */
#post-actions-menu {
    width: 90%;
    max-width: 700px;
    height: 70%;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* <-- start from top */
    align-items: stretch;          /* fill width */
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow: hidden; /* prevent overflow outside */
}

/* Slide-up active */
#post-actions-menu.show {
    transform: translateY(0);
}

/* Back button */
#post-actions-back {
    margin: 10px;
    padding: 8px 16px;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: fit-content;
}
#post-actions-back:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Menu list scrollable */
#post-actions-menu ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    overflow-y: auto;
}
#post-actions-menu li {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}
#post-actions-menu li:hover {
    background: #f0f0f0;
}










/* Post content */
.post-content p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.post-content img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 400px;
}

/* Post comments */
.post-comments {
    font-size: 0.9rem;
}

.post-comments h5 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #222;
}

.post-comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.post-comments li {
    padding: 4px 0;
    color: #555;
}

/* Options menu */
.post-options-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
}

.post-options-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.post-options-menu li {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.post-options-menu li:hover {
    background-color: #f5f5f5;
}

/* Post media */
.post-media img,
.post-media video {
    max-width: 100%;
    border-radius: 8px;
}


/* Post actions container */
/* ---------- POST ACTIONS ICONS ONLY WITH COUNTS ---------- */
.post-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.post-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem; /* icon size */
    color: #555;
    padding: 6px 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    gap: 4px; /* space between icon and number */
    transition: transform 0.2s, color 0.2s, background 0.2s;
}


.post-actions .action-count {
    font-size: 0.85rem;
    color: #555;
    user-select: none;
}

/* Optional: different icon colors */
.like-btn i { color: #007bff; }
.dislike-btn i { color: #dc3545; }
.fav-btn i { color: #ffc107; }
.share-btn i { color: #28a745; }

.post-actions button:hover i {
    color: #e04344; /* unified hover icon color */
}




/* ===============================
   Post Comments
=============================== */
.post-comments {
    font-size: 0.9rem;
    margin-top: 10px;
}

.post-comments h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
}

/* -------------------------------
   Comment Form
------------------------------- */
.comment-form {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.comment-form input {
    flex-grow: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.comment-form button {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.comment-form button:hover {
    background-color: #0056b3;
    transform: scale(1.03);
}

/* -------------------------------
   Comments List & Items
------------------------------- */
.comments-list,
.replies-list,
.post-comments-full .comments-list-full {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* -------------------------------
   Comment Item Layout
------------------------------- */
.comment-item {
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.comment-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #555;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comment-header {
    display: flex;
    flex-direction: column;
}

.comment-user-info {
    display: flex;
    flex-direction: column; /* stack name above time */
}

.comment-user-info strong {
    font-size: 0.9rem;
    color: #333;
}

.comment-user-info .comment-time {
    font-size: 0.75rem;
    color: #777;
    margin-top: 2px;
}

/* Optional: Keep actions below text */
.comment-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    font-size: 0.85rem;
}

.comment-body p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: #333;
}

/* -------------------------------
   Comment Actions & Buttons
------------------------------- */
.comment-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
}

.comment-actions button {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, transform 0.2s;
}

.comment-actions button:hover {
    color: #e04344;
    transform: scale(1.2);
}

.comment-actions .count {
    font-size: 0.85rem;
    color: #555;
}

.comment-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    padding: 6px 10px;
    border-radius: 6px;
    transition: transform 0.2s, color 0.2s, background 0.2s;
}

.comment-btn i {
    color: #17a2b8;
}

.comment-btn .action-count {
    font-weight: 500;
    color: #555;
}

.comment-btn:hover i,
.comment-btn:hover .action-count {
    color: #e04344;
}

/* -------------------------------
   Replies
------------------------------- */
.replies-list {
    padding-left: 40px;
    margin-top: 6px;
    gap: 6px;
}

/* -------------------------------
   Reply Form
------------------------------- */
.reply-form {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.reply-form input {
    flex-grow: 1;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.reply-form button {
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background-color: #17a2b8;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.reply-form button:hover {
    background-color: #138496;
}

/* -------------------------------
   Full Comments Container
------------------------------- */
.post-comments-full {
    display: none;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 12px 12px 0 0;
    overflow-y: auto;
    height: 70%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 90%;
    max-width: 700px;
    z-index: 999;
}

.post-comments-full.show {
    transform: translateX(-50%) translateY(0);
    transition: transform 0.3s ease;
}

/* Back button */
.post-comments-full .back-to-feed {
    position: sticky;
    top: 0;
    z-index: 11;
    margin: 10px 0 10px 10px;
    padding: 8px 16px;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: fit-content;
}

.post-comments-full .back-to-feed:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Sticky comment input at bottom */
.post-comments-full .comment-form {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 10px;
    z-index: 10;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 8px;
}

.post-comments-full .comment-form input {
    flex-grow: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.post-comments-full .comment-form button {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.post-comments-full .comment-form button:hover {
    background-color: #0056b3;
    transform: scale(1.03);
}

/* Scrollable comments list */
.post-comments-full .comments-list-full {
    flex: 1;
    overflow-y: auto;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Highlight comment when replying */
.comment-item.highlighted {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    transition: background 0.3s, border 0.3s;
}









/* ================= RIGHT PANEL ================= */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section headings */
.right-panel h3, .right-panel h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

/* ----------------- Live Chat ----------------- */
.chat-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    max-height: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

#chat-messages {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#chat-messages li {
    padding: 8px 12px;
    border-radius: 12px;
    background-color: #f4f6f8;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-input {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.chat-input input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.chat-input button {
    padding: 8px 16px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.chat-input button:hover {
    background-color: #1e7e34;
}

/* ----------------- Communities & Spotlights ----------------- */
.communities, .spotlights {
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.communities ul,
.spotlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.communities li,
.spotlights li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #f4f6f8;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-size: 0.95rem;
}

.communities li:hover,
.spotlights li:hover {
    background-color: #e0e4e8;
    transform: translateY(-1px);
}

.communities li i,
.spotlights li i {
    margin-right: 8px;
    color: #007bff;
}

/* Spotlights visit button */
.spotlights li button.visit-btn {
    padding: 4px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}
.spotlights li button.visit-btn:hover {
    background-color: #0056b3;
}

/* ----------------- Online Users ----------------- */
.online-users {
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.online-users ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.online-users li {
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
    color: #333;
}

.online-users li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 0.8rem;
}


/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 1024px) {
    .social-container {
        grid-template-columns: 200px 1fr 200px;
    }
}
@media (max-width: 900px) {
    .social-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .left-panel,
    .right-panel {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .new-post textarea {
        min-height: 60px;
    }
    #posts-feed li {
        padding: 12px;
    }
}
