.mtcs-wrapper {
    border-top: 2px solid #4caf50;
    padding-top: 20px;
    margin-top: 20px;
    font-family: inherit;
}

.mtcs-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.mtcs-add-wrapper {
    text-align: right;
    margin-bottom: 10px;
}

.mtcs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 16px;
    border: none;
    background: #4caf50;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
}

.mtcs-btn:hover {
    background: #43a047;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.mtcs-btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

.mtcs-form-container {
    margin-bottom: 25px;
}

.mtcs-comment-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 20px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    border: 1px solid #e4e7eb;
}

.mtcs-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mtcs-form-title {
    font-weight: 600;
}

.mtcs-form-close {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.mtcs-field {
    margin-bottom: 12px;
}

.mtcs-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mtcs-field label span {
    color: #e53935;
}

.mtcs-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccd1d9;
    padding: 8px 10px;
    font-size: 14px;
    resize: vertical;
}

.mtcs-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.15);
}

.mtcs-field-files input[type="file"] {
    display: block;
    margin-bottom: 6px;
}

.mtcs-note {
    font-size: 12px;
    color: #666;
    margin: 3px 0 0;
}

.mtcs-form-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.mtcs-form-status {
    font-size: 12px;
    color: #555;
}

/* Списък с коментари */

.mtcs-no-comments {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.mtcs-comment-list,
.mtcs-comment-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mtcs-comment-item {
    margin-bottom: 15px;
}

.mtcs-comment-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px 16px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    border: 1px solid #e7ebf0;
}

.mtcs-comment-pending .mtcs-comment-card {
    background: #fffbe6;
}

.mtcs-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mtcs-avatar {
    margin-right: 10px;
}

.mtcs-avatar img {
    border-radius: 50%;
}

.mtcs-avatar-placeholder {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
}

.mtcs-meta {
    display: flex;
    flex-direction: column;
}

.mtcs-author {
    font-weight: 600;
    font-size: 14px;
}

.mtcs-date {
    font-size: 12px;
    color: #888;
}

.mtcs-comment-body {
    font-size: 14px;
    margin-top: 6px;
}

.mtcs-images-row {
    margin-bottom: 8px;
}

.mtcs-image-thumb {
    max-height: 120px;
    max-width: 120px;
    border-radius: 8px;
    margin-right: 6px;
    margin-bottom: 4px;
    border: 1px solid #eee;
}

.mtcs-text p {
    margin: 0 0 4px;
}

.mtcs-comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.mtcs-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.mtcs-badge-pending {
    background: #fff59d;
    border-color: #fdd835;
    color: #827717;
}

.mtcs-children {
    margin-left: 36px;
    margin-top: 8px;
}

.tl-comm-btn {
    font-size: 20px;
    color: #5754a4;
    padding: 6px 14px;
    cursor: pointer;
    transition: 0.2s;
	margin-right: 0;
}

.tl-comm-btn img{
	width:30px;
	margin-top: -6px;
}
.tl-comm-btn span{
	font-size: 13px;
    letter-spacing: normal;
}

.tl-comm-btn:hover {
     color: #5754a4;
    border: 1px solid #5754a4;;
}

.tl-comm-btn.liked {
    background: #ff4d6d;
    color: #fff !important;
    border-color: #ff4d6d;
}


/* Responsive */
@media (max-width: 600px) {
    .mtcs-comment-card {
        padding: 12px 12px 8px;
    }
    .mtcs-children {
        margin-left: 18px;
    }
}
