/* Main comment box container */
.my-comment-box-container {
    margin:0px; 
	padding: 18px 10px 5px 10px; 
	border-radius:8px; 
	font-family: Arial, sans-serif;
	margin-bottom: -10px;
}

/* Comment count header */
.comment-count-header {
    margin-bottom:20px; 
	font-weight:bold; 
	font-size: 18px;
	margin-left:3px;
	font-family: 'Mukta';
}

/* Form labels */
.comment-label {
	display:block;
    font-family:'Mukta';
	font-size:17px;
	margin-left: 3px;
}

/* Input fields */
.comment-input {
    width: 100% !important;
	padding: 10px !important;
	margin-top: 5px !important;
	border-radius: 5px !important;
	border: 1px solid #ccc !important;
	font-size: 14px !important;
	height: 40px!important;
	color: #444;
}



.comment-textarea {
    width: 100% !important;
    padding: 6px 15px 5px 12px;
    margin-top: 5px !important;
    border-radius: 5px !important;
    border: 1px solid #ccc !important;
    font-size: 14px !important;
    min-height: 80px !important;
    color: #444;
    line-height: 1.5;
	height:80px;
}

/* Error messages */
.error-message {
    color: red;
    display: none;
    font-size: 13px;
    margin-top: 5px;
    margin-left: 3px;
}

/* Submit button */
.submit-comment-button {
    margin-top: 10px;
    font-family: Mukta, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    width: auto;
    text-align: left;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 8px 10px 6px 10px;
    border-radius: 3px;
    background: rgb(191, 30, 46);
	margin-bottom: 10px;
}

/* Comments list */
.comments-list {
    margin-top: 10px;
}

/* Load more button */
.load-more-button {
    display: none;
    margin-top: 10px;
    padding: 6px;
    width: 100%;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
	font-family: 'Mukta';
}

/* Individual comments */
.custom-comment {
    position: relative;
    display: flex;
    gap: 8px;
    background: #fefefe;
    padding: 10px 10px 0px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
}





/* Avatar styling */
.comment-avatar-icon svg {
    width: 33px;
    height: 33px;
    fill: #606770;
    border-radius: 50%;
    background-color: #e4e6eb;
    padding: 1px;
    box-sizing: border-box;
	margin-top: 2px;
}

.reply-avatar-icon svg {
    width: 23px;
    height: 23px;
    fill: #606770;
    border-radius: 50%;
    background-color: #e4e6eb;
    padding: 1px;
    box-sizing: border-box;
	margin-top: 3px;
}

/* Reply styling */
.reply-avatar-wrapper {
    margin-left: -10px;
}

/* Comment content */
.comment-content-wrapper {
    flex-grow: 1;
    margin-right: -10px;
}

.custom-comment strong {
    font-size: 17px;
    color: #385899;
    text-transform: capitalize;
	font-family:'Mukta';
}

.comment-text {
    margin-top: -1px;
    padding-right: 10px;
    font-size: 16px;
	color: #3c3c3c;
	font-family: 'Mukta';
}

.comment-time {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reply-button {
    color: #385899;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
}

.reply-button:hover {
    text-decoration: underline;
}

/* Delete button */
.delete-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    color: red;
    cursor: pointer;
    font-size: 14px;
}

.delete-btn:hover {
    text-decoration: underline;
}

.required {
    color: red;
}


@media screen and (max-width: 782px) {
  
	.custom-comment {padding: 5px 10px 5px 2px;}
	
	.comment-avatar-icon svg {
    width: 30px;
    height: 30px;
    padding: 0px;}
	
	.reply-avatar-icon svg {
    width: 22px;
    height: 22px;
    padding: 0px;}

}

