    .create_post_menu_selected {
        background-color: darkslategrey;
        color: white;
    }

    .show_my_profile_button {
        cursor: pointer;
        color: #2a70b9;
    }

    .dropdown-menu {
        transform: translate3d(-120px, 16px, 0px);
    }

    .dropdown-item {
        color: darkslategray;
        padding: 0 15px;
        line-height: 35px;
    }

    /* This is for small screens */
    @media (max-width: 992px) {
        #newsfeed_content {
            padding: 10px 5px;
        }
    }

    /* This is for large screens */
    @media (min-width: 992px) {
        #newsfeed_content {
            padding: 10px 25px;
        }
    }

    /* AONLINE DROPDOWN MENU */

    #newsfeed_dropdown_select {
        border: 1px solid #ccc;
        max-height: 250px;
        overflow-y: auto;
        position: absolute;
        background-color: white;
        z-index: 1000;
        display: block;
        color: darkslategrey;
        width: 250px;
        font-weight: normal;
        text-align: left;
    }

    #newsfeed_dropdown_select div {
        padding: 8px;
        cursor: pointer;
    }

    #newsfeed_dropdown_select div:hover {
        background-color: #f0f0f0;
    }

    /* NEW COMMENT THEMEING */

    .comment_block {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border: 1px solid #ccc;
        background-color: white;
        box-shadow: 0 2px 4px rgba(0,0,0,.2);
    }

    .comment_block_box {
        padding-top: 12px;
        font-family: Arial, sans-serif;
    }

    .comment {

    }

    .comment_replies_item {
        padding: 10px 0 10px 20px;
        font-family: Arial, sans-serif;

    }

    .comment_header {
        align-items: center;
        background-color: whitesmoke;
        border-radius: 4px;
        padding: 10px 5px 0 5px;
    }

    .comment_avatar {
        width: 50px;
        float: left;
        padding-top: 10px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-right: 8px;
    }

    .comment_meta {
        font-size: 0.9em;
        color: #555;
        padding: 5px 0;
    }

    .comment_name {
        font-weight: bold;
        margin-right: 6px;
        cursor: pointer;
    }

    .time {
        color: #999;
    }

    .newsfeed_comment_text {
        padding: 15px 0;
        font-size: 9pt;
    }

    .comment_actions {
        font-size: 0.8em;
        color: #777;
        padding: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%; /* or a specific width */
    }

    .comment_actions_left {
        display: flex;
        gap: 5px; /* optional spacing between left boxes */
    }

    .comment_actions_right {
        margin-left: auto; /* pushes it to the right */
    }

    .comment_actions_button {
        width: 50px;
        height: 20px;
        text-align: center;
        line-height: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comment_replies {
        margin-left: 40px;
        border-left: 1px solid #eee;
        padding-left: 10px;
    }

    .comment_mention {
        color: #1877f2;
        font-weight: bold;
    }

    .newsfeed_comments_show_object {
        font-weight: bold;
        color: #2a70b9;
        cursor: pointer;
    }

    .comment_reply_text_area {
        padding: 0;
    }

    .comment_edit_text_area {
        padding: 0;
    }