.article-reaction {
    display: flex;
    margin-bottom: 5px;
    justify-content: center;
    align-content: space-between;
}

.article-reaction button {
    background-color: #413f3f;
    color: #abb8c3;
    margin-right: 10px;
    padding: 10px;
    border-radius: 5px;
}

.heart, .broken-heart {
    font-size: 20px;
    color: rgb(88, 86, 86);
}

.article-reaction button.active .heart {
    color: gold;
}

.article-reaction button.active .broken-heart {
    color: silver;
}

.comments {
    margin: 10px 0;
}

/* .comment {
    padding: 5px;
    border: 0.0001px solid #ccc;
    margin-bottom: 5px;
    border-radius: 5px;
} */
.comment {
    padding: 5px; 
    margin-bottom: 20px;
    border-radius: 5px; 
    box-shadow: 0 -1px 2px rgba(162, 160, 160, 0.5), 0 1px 2px rgba(105, 105, 105, 0.5);
    /* box-shadow: 0 2px 4px rgba(246, 246, 246, 0.1);  */
}

.comment p {
    margin: 0 0 10px 0; 
    line-height: 1.5; 
}

.reply {
    background-color: #363333; /* Light background color for replies */
}

.reply-section {
    margin-top: 10px;
}

.reply-section input {
    width: calc(100% - 90px); /* Adjust width to fit the container */
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.reply-section button {
    padding: 5px 10px;
    background-color: #b60b10;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

.reaction-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 3px;
    gap: 5px;
    box-shadow: 0 -1px 2px rgba(103, 102, 102, 0.5), 0 1px 2px rgba(105, 105, 105, 0.5); /* Silver shadow on top and bottom */
    border-radius: 5px;
    margin-bottom: 5px;
}

.like-comment, .dislike-comment, .reply-comment {
    background-color: #413f3f;
    font-size: 16px;
    color: white;
    border: 1px solid rgba(230, 228, 228, 0.5) ;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

/* .like-comment:hover, .dislike-comment:hover,  */
.reply-comment:hover {
    background-color: goldenrod; color: #000000;
}
.like-comment.active i{color: gold;}
.dislike-comment.active i{color: silver;}

.like-comment i, .dislike-comment i {
    margin-left: 5px;
}

.like-comment span, .dislike-comment span {
    margin-right: 5px;
}


.heart, .broken-heart {
    font-size: 20px;
}

.reply-comment {
    margin-right: auto; /* Push the reply button to the left */
}
.show-replies button{background-color: #363333; color: #ccc; border: none; text-decoration: underline; font-size: 18px; text-align: center;}

  .reaction-text {
    display: none;
    position: absolute;
    /* top: 20px; 
    left: 50%; */
    margin-top: 45px;
    /* transform: translateX(-50%); */
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 5px;
    font-size: 14px;
    border-radius: 3px;
    white-space: nowrap;
}

.like-comment:hover .reaction-text,
.dislike-comment:hover .reaction-text {
    display: block;
}
.entry-content{
    width: 100%;
}
.dropdown-option {
    margin-left: auto; font-size: medium;
    position: relative; display: inline-block;
}
.dropdown-choices{
    display: none;position: absolute;right: 10px;min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(145, 143, 143, 0.2); z-index: 10; 
}
.dropdown-choices button {
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    width: 100px;
    text-align: right;
}
.dropdown-option:hover .dropdown-choices {
    display: block;
}

.popup-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(167 163 168 / 50%);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: rgb(42 44 49);
    padding: 20px;
    border-radius: 5px; color:gold; 
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height:200px;
    font-size:20px;
    margin: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.entry-content{
    width: 100%;
}
#content{
    width: 100%;
}