.content-stats-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    color: #cfcfcf;
    font-size: 13px;
}

.content-stats-mini span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 5px 10px;
}

.interaction-panel {
    width: 100%;
    margin-top: 34px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, #202020 0%, #171717 100%);
    border: 1px solid rgba(76, 175, 80, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    color: #eee;
}

.interaction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.interaction-header h2 {
    margin: 0;
    font-size: 1.45rem;
    color: #76ff03;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.interaction-stats,
.interaction-actions-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.interaction-stats span,
.logged-user-note,
.login-required {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 8px 12px;
    color: #d9d9d9;
    font-size: 14px;
}

.login-required {
    border-radius: 12px;
    line-height: 1.5;
}

.login-required a {
    color: #76ff03;
    font-weight: 700;
    text-decoration: none;
}

.like-form {
    margin: 0;
}

.like-button,
.comment-form button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 10px 16px;
    color: #fff;
    background: #3d3d3d;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.like-button:hover,
.comment-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.like-button.liked {
    background: #e53935;
}

.comment-form {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-form textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border: 1px solid rgba(118, 255, 3, 0.25);
    border-radius: 12px;
    background: #111;
    color: #f1f1f1;
    padding: 14px;
    outline: none;
    font-size: 15px;
    line-height: 1.55;
}

.comment-form textarea:focus {
    border-color: #76ff03;
    box-shadow: 0 0 0 3px rgba(118, 255, 3, 0.11);
}

.comment-form button {
    align-self: flex-start;
    background: #4caf50;
    color: #101010;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.comment-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    color: #bfbfbf;
    font-size: 13px;
    margin-bottom: 8px;
}

.comment-meta strong {
    color: #fff;
    font-size: 15px;
}

.comment-card p {
    margin: 0;
    color: #e7e7e7;
    line-height: 1.6;
}

.no-comments,
.interaction-alert {
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #d8d8d8;
}

.interaction-alert {
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.interaction-alert.success {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.35);
    color: #bdf7c0;
}

.interaction-alert.error {
    background: rgba(229, 57, 53, 0.12);
    border-color: rgba(229, 57, 53, 0.35);
    color: #ffc6c4;
}

@media (max-width: 800px) {
    .interaction-panel {
        padding: 18px;
    }

    .interaction-header {
        flex-direction: column;
    }

    .interaction-stats span,
    .logged-user-note,
    .login-required {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
}

.admin-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 999px;
    padding: 8px 12px;
    color: #ffe082;
    font-size: 14px;
    font-weight: 700;
}

.comment-admin-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-admin-tools details {
    flex: 1 1 280px;
}

.comment-admin-tools summary {
    cursor: pointer;
    color: #76ff03;
    font-weight: 800;
    margin-bottom: 10px;
}

.comment-admin-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-admin-form textarea {
    width: 100%;
    min-height: 85px;
    resize: vertical;
    border: 1px solid rgba(118, 255, 3, 0.25);
    border-radius: 10px;
    background: #111;
    color: #fff;
    padding: 10px;
}

.comment-admin-form button,
.comment-delete-btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
}

.comment-admin-form button {
    align-self: flex-start;
    background: #4caf50;
    color: #101010;
}

.comment-delete-btn {
    background: #e53935;
    color: #fff;
}
