.comments-area {
    width: 100% !important;
    margin: 30px 0 !important;
    font-family: Arial, sans-serif !important;
}
div.comment-custom-field {
    /* border: 1px solid #eae7e7; */
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    padding: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
	margin-top: -5px;
    gap: 20px;
    align-items: center;
}
.group-upload-submit {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    padding-right: 10px;
    align-items: center;
}
div.group-email-name {
    display: flex;
    gap: 20px;
    padding-left: 10px;
}
.comments-title {
    color: #E5B948 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    margin-bottom: 20px !important;
    display: block !important;
    visibility: visible !important;
}

.comment-form-comment textarea {
    width: 100% !important;
    min-height: 150px !important;
    padding: 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    resize: vertical !important;
    font-family: inherit !important;
}

.comment-form-inputs {
    display: inline-block !important;
    margin-right: 1% !important;
}

.comment-form-inputs:last-child {
    margin-right: 0 !important;
}

.comment-form-inputs input {
    width: 100% !important;
    padding: 4px 15px !important;
    border: 1px solid #717171!important;
    border-radius: 8px !important;
    font-family: inherit !important;
}

.comment-form-image {
    margin: 5px;
    display: flex;
}
p.comment-form-comment {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px 8px 0 0;
    padding: 0;
    margin-bottom: 0;
}

.image-upload-button {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    color: #717171;
    border-radius: 8px;
    background-color: #f5f5f5;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #717171;
}

.image-upload-button svg {
    margin-right: 8px !important;
}

.form-submit {
    display: inline-block !important;
    vertical-align: top !important;
    margin-left: 1% !important;
}

.form-submit button {
    width: 100% !important;
    padding: 12px 15px !important;
    background-color: #4285f4 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    font-family: inherit !important;
    text-transform: uppercase !important;
}

/* Comment List Styling */
.comment-list {
    margin-top: 30px !important;
}

.comment-item {
    display: flex !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    
}

.comment-avatar {
    margin-right: 15px !important;
}

.comment-avatar img {
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
}

.comment-content {
    flex: 1 !important;
}

.comment-author {
    font-weight: bold !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
	color: #ffffff;
}

.comment-text {
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
	color: #ffffff;
}

.comment-images {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
}

.comment-images img {
    max-width: 150px !important;
    max-height: 150px !important;
    border-radius: 5px !important;
    object-fit: cover !important;
}

.comment-actions {
    display: flex !important;
    align-items: center !important;
}

.comment-like {
    margin-right: 20px !important;
}

.like-button {
    display: flex !important;
    align-items: center !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #fe9700 !important;
    padding: 0 !important;
}

.like-button svg {
    margin-right: 5px !important;
}

.comment-reply a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Image Preview */
#image-preview-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.image-preview {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
}

.image-preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 5px !important;
}

.remove-image {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: white !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
}

/* Reply form styling */
#cancel-comment-reply-link {
    display: inline-block;
    margin-bottom: 10px;
    color: #ff0000;
    text-decoration: none;
}

.comment-reply-title {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Nested comments */
.child-comments {
    margin-left: 50px !important;
    border-left: 2px solid #e0e0e0 !important;
    padding-left: 15px !important;
}

.child-comment {
    margin-top: 20px !important;
}

/* Ẩn các phần tử mặc định không cần thiết */
.comment-notes,
.comment-form-cookies-consent,
.comment-form-url {
    display: none !important;
}

/* Đảm bảo form bình luận hiển thị đúng */
#commentform {
    display: block !important;
}

/* Đảm bảo nút submit hiển thị đúng */
#submit {
    background-color: #fe9700 !important;
    color: white !important;
	text-align: center;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    padding: 12px 15px !important;
    width: 100% !important;
}