/* ===== INTERACTION CONTAINER – 95% width, centered ===== */
#interactionContainer {
    width: 95%;
    max-width: 1200px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Like button */
.like-btn {
    background: #f07a8a;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    color: #0a0c1a;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.like-btn:hover {
    background: #ff8a9a;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.like-btn:active {
    transform: scale(0.98);
}

/* Comments section */
.comments-section h3 {
    font-size: 1.5rem;
    color: #ffd966;
    margin-bottom: 1rem;
    border-left: 4px solid #f07a8a;
    padding-left: 1rem;
}

/* Comment items (existing) */
.comment-item {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #f07a8a;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.comment-meta {
    font-size: 0.8rem;
    color: #2c7da0;
    font-weight: 600;
}
.comment-text {
    margin-top: 0.3rem;
    color: #1e2a3a;
    line-height: 1.4;
}
.reply-btn {
    background: none;
    border: none;
    color: #f07a8a;
    cursor: pointer;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    padding: 0;
    font-weight: 500;
}
.reply-btn:hover {
    text-decoration: underline;
}

/* ===== COMMENT FORM STYLING ===== */
#commentForm {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#commentForm input, #commentForm textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 1.2rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1e2a3a;
    transition: all 0.2s ease;
}
#commentForm input::placeholder, #commentForm textarea::placeholder {
    color: #8a9bb0;
}
#commentForm input:focus, #commentForm textarea:focus {
    outline: none;
    border-color: #f07a8a;
    box-shadow: 0 0 0 3px rgba(240, 122, 138, 0.3);
}
#commentForm textarea {
    resize: vertical;
    min-height: 100px;
}
#commentForm button[type="submit"] {
    background: #f07a8a;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 3rem;
    font-weight: bold;
    font-size: 1rem;
    color: #0a0c1a;
    cursor: pointer;
    transition: 0.2s;
    align-self: flex-start;
}
#commentForm button[type="submit"]:hover {
    background: #ff8a9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#commentForm button[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    #interactionContainer {
        width: 98%;
        padding: 1rem;
    }
    #commentForm input, #commentForm textarea {
        padding: 0.6rem 0.8rem;
    }
}