﻿body {
}
.delete {
    color: red !important;
}

.comment-box {
    background-color: white;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .comment-box textarea {
        width: 100%;
        border: none;
        resize: none;
        outline: none;
        font-size: 16px;
        height: 60px;
        padding: 10px;
        box-sizing: border-box;
    }

        .comment-box textarea::placeholder {
            color: #aaa;
        }

.attachment {
    margin-top: 10px;
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 6px;
    padding: 5px 10px;
    width: fit-content;
}

    .attachment img {
        width: 20px;
        margin-right: 8px;
    }

.filename {
    font-size: 14px;
    margin-right: 10px;
}

.remove-file {
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

.comment-footer {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.attach-icon {
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: color 0.2s ease;
}

    .attach-icon:hover {
        color: #000;
    }

.comment-op a {
    font-size: 12px;
    font-weight: bold;
}

#CommentList .comment-parent {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    width: 600px;
    padding: 20px;
    margin-bottom: 20px;
}

.comments-reply {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    width: 500px;
    padding: 20px;
    margin-bottom: 20px;
}

.secondary {
    color: var(--gray);
}
.comments-reply {
    /*margin-left: 90px;*/
}

.comments-text {
    overflow: hidden;
    padding-left: 20px;
}

.comments-box {
    /*margin-bottom: 50px;*/
}

.comments-text a {
    color: #333333;
    font-weight: 500;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

    .comments-text a:hover {
        color: var(--red-color);
    }

.avatar-name h5 {
    display: flex;
    align-items: baseline;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
}

.post-comments-form form input {
    width: 100%;
    background: 0;
    border: 1px solid #eaeaea;
    height: 40px;
    padding: 0;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #a4a4a4;
    font-family: 'Roboto', sans-serif;
}

.post-comments-form form textarea {
    width: 100%;
    background: 0;
    border: 1px solid #eaeaea;
    height: 130px;
    padding: 0;
    padding-left: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    font-size: 14px;
    color: #a4a4a4;
    font-family: 'Roboto', sans-serif;
}

    .post-comments-form form input::placeholder,
    .post-comments-form form textarea::placeholder {
        font-size: 14px;
        color: #a4a4a4;
        font-family: 'Roboto', sans-serif;
    }

.comments-text p {
    margin-bottom: 5px;
}

.main-comments {
    /*padding-right: 155px;*/
}