
/*write comment section styles here*/

.comment-area{
    /* display: flex; */
    align-content: center;
}

.comment-profile-pic {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.comment-profile-pic img {
    border-radius: 50%;
    width: 34px;
}

.comment-input-area{
    display: flex;
    flex: 1;
    background-color:#eeeeee;
    color: var(--text-dark);
    border-radius: 30px;
}

.comment-input-area input{
    flex: 1;
    border: none;
    text-decoration: none;
    padding: 10px;
    font-size: inherit;
    text-decoration: none;
    border-radius: 30px;
    background-color: var(--seco-color);
}

.comment-input-area input:focus{
    outline: none;
}

.comment-input-area input::placeholder{
    color: #656781;
}

.comment-input-area input:focus::placeholder{
    color: #8A8D91;
}

.comment-icon{
    display: flex;
    padding-right: 10px;
}

.icon-comment{
    align-self: center;
    width: 30px;
    height: 30px;
    padding: 4px;
    color: var(--text-dark);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.icon-comment:hover{
    background-color: rgba(0, 0, 0, 0.1);
}



.comment-img{
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    margin-left: 7px;
    margin-top: 5px;
    margin-right: 6px;
}

.all-comments{
    margin: 10px 0;
    cursor: pointer;
}

.all-comments h4{
    color: #1d1f23;
    float: right;
    font-size: 50x;
    font-weight: lighter;
}

.all-comments-h4-i{
    color: #1D1F23;
    position: relative;
    top: 2px;
    height: 10px;
}

.comment{
    display: flex;
}
.comment-text{
    background-color: rgb(239, 232, 232);
    border: none;
    border-radius: 20px;
    padding: 13px;
    /* max-width: 500px; */
    width: 100%;
}
.comment-reply-text{
    background-color: rgb(232, 239, 235);
    border: none;
    border-radius: 20px;
    padding: 13px;
    /* max-width: 500px; */
    width: 100%;
}

.comment-header p {
    font-size: 16px;
    padding-bottom: 6px;
}

.comment-lks {
    font-size: 14px;
    font-weight: bold;
    padding-left: 60px;
    color: rgb(101, 103, 107);
}

.comment-lks span{
    cursor: pointer;
}

.comment-lks span:hover{
    text-decoration: underline;
}

.comment-lks .dot{
    color:rgb(138, 141, 145);
    position: relative;
    top: -3px;
    text-decoration: none;
    cursor: text;
}

.comment-lks .dot:hover{
    text-decoration: none;
}

.three-dot{
    display: flex;
    align-items: center;
}

.three-dot-img{
    padding-left: 8px;
    height: 17px;
    display: none;
    cursor: pointer;
}

.comment:hover .three-dot-img{
    display: flex;
}


.like-container {
    position: relative;
    display: inline-block;
}

.emoji-list {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(1px); /* Adds some spacing between the list and the button */
}

.emoji-list span {
    cursor: pointer;
    font-size: 20px;
    margin: 0 5px;
}

.like-container:hover .emoji-list {
    display: flex;
}

/* Main comment container */
.comment-container {
    /* background-color: #f9f9f9; */
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Reply container (first-level replies) */
.reply-container {
    /* background-color: #e9ecef; */
    padding: 10px;
    border-radius: 5px;
    margin-left: 20px; /* Indent replies */
    margin-bottom: 10px;
}

/* Nested reply container (for deeper levels of replies) */
.reply-container .reply-container {
    /* background-color: #dee2e6; */
    margin-left: 40px;
}



