.commnet-side-bar {
	position: fixed;
	height: 100vh;
	top: 0px;
	width: 600px;
	right: -600px;
	background-color: #fff;
	border: 1px solid #ddd;
	z-index: 8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.commnet-side-bar.open {
	right: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0 0 10px 1px rgba(68, 102, 242, 0.05);
	box-shadow: 0 0 10px 1px rgba(68, 102, 242, 0.05);
}

.sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.3);
	z-index: 7;
	transition: opacity 0.3s;
	opacity: 0;
}

.sidebar-overlay.active {
	display: block;
	opacity: 1;
}

.cmt-body {
	background-color: #f8f9fa;
}
.cmt-body .cmt-cover{
    padding: 0px 0px 0px 80px;
    margin: 0 0px 0px 0px;
    /* overflow: hidden; */
    position: relative;
}
.cmt-body .cmt-cover .user-profile-cmt{
    display: inline-block;
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
}
.user-profile-cmt img {
	width: 60px;
	height: auto;
	border: 2px solid #ddd;
	padding: 2px;
	object-fit: contain;
}

.user-mention {
	display: inline-block;
	background-color: #e1f3ff;
	color: #0366d6;
	border-radius: 3px;
	padding: 0 3px;
	font-weight: 500;
	transition: background-color 0.2s;
}

/* Mention dropdown styling */
.mention-dropdown {
	position: absolute;
	background-color: white;
	border: 1px solid #e1e4e8;
	border-radius: 6px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	width: 330px;
	max-height: 350px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}


.dropdown-header {
	padding: 8px 12px;
	background-color: #f6f8fa;
	border-bottom: 1px solid #e1e4e8;
	font-weight: 500;
	font-size: 13px;
	color: #586069;
}

.mention-list {
	max-height: 280px;
	overflow-y: auto;
}

.mention-item {
	padding: 8px 12px;
	display: flex;
	align-items: center;
	cursor: pointer;
	border-bottom: 1px solid #f1f1f1;
	transition: background-color 0.2s;
}

.user-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}

.mention-item:hover {
	background-color: #cce7ff;
	text-decoration: none;
}
.cmt-user-avatar{
	    width: 50px;
    height: 50px;

    object-fit: cover;
}
.comment-item:hover {
    border-left-color: #d4d4d8;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mention-dropdown.show {
	display: block;
	animation: fadeIn 0.2s ease forwards;
}

.comment-item{
    margin-bottom: 15px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}
.comment-content {
    /* background-color: #f4f4f5; */
    border-radius: 0px;
    padding: 15px;
    position: relative;
}
.h-650{
	height: 650px;
}
@media (min-width: 320px) and (max-width: 767px) {
	.commnet-side-bar {
		width: 100%;
		right: -100%;
	}

	.commnet-side-bar.open {
		right: 0;
	}
    .mention-dropdown{
        width: 300px;
            max-height: 175px;
                overflow-y: auto;
}
}