﻿/* ============================================
   fight-comments.css
   Styling for MVP comment form and list
   ============================================ */

#commentNotif {
    background: #7b0000;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 2px solid #500000;
}

#comments {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border-top: 2px solid #7b0000;
}

.comment {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

    .comment b {
        color: #7b0000;
    }

    .comment .time {
        float: right;
        color: #999;
        font-size: 0.8rem;
    }

#commentForm {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

#newComment {
    resize: none;
    width: 100%;
    min-height: 80px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

#commentBtn {
    align-self: flex-end;
    background-color: #7b0000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-weight: bold;
    cursor: pointer;
}

    #commentBtn:hover {
        background-color: #a40000;
    }
