.comments {
    margin: 20px 0px;
    border-radius: 20px;
    padding: 25px;
    background: white;
    display: flex;
    direction: rtl;
    flex-direction: column;
}
.comments input, .comments textarea {
    margin-bottom: 15px;
    padding: 9px;
    border: 1px solid #b3b3b3;
    border-radius: 12px;
}
button.btn.btn-primary.comment-btn {
    border-radius: 8px;
    width: 200px;
    color: white;
    background: #4b6736;
    height: 42px;
    cursor: pointer;
    /* border: 1px solid; */
}

ul.child_comment {
    margin-left: auto;
    margin-right: 50px;
}
.comment-cell img {
    width: 45px !important;
}
.comment-cell {
    margin-top: -27px;
}
.recent-comments {
    border-radius: 20px;
    margin: 20px 0px;
    padding: 20px;
    direction: rtl;
    background: #d1f6ff;
}
.comment-cell {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background: white;
}
.recent-comments li {
    list-style: none;
}
.comment-cell-header {
    align-items: center;
    display: flex;
}
.comment-cell-header img {
    margin-left: 13px;
    width: 42px;
}
.comment-cell-header span {
    font-weight: bold;
    font-size: 28px;
}
.comment-cell-metadata {
    font-size: 14px;
    color: #4b6736;
}

.child_comment .comment-cell {
    background: #aae8f6;
}
@keyframes fadeInZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.alert.success-danger.success-dismissible {
    padding: 20px;
    z-index: 2;
    font-size: 26px;
    width: auto;
    border-radius: 12px;
    left: 41%;
    top: 5%;
    position: absolute;
    display: inline;
    background: #1ee95e;
    margin: 20px;
    opacity: 0;
    transform: scale(0.8); /* Initial scale, adjust as needed */
    animation: fadeInZoomIn 0.5s ease-in-out forwards;
}
.alert .close {
    border-radius: 46px;
    width: 46px;
    background: white;
    border: none;
}


.recent-comments ul li {
    display: block;
}
.recent-comments li:before {
    content: '' !important;
    background: none !important;
}
