﻿.forum-container {
    margin: 0 2px;
}

.forum-post {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.17);
    /*    border: 1px solid #e39c39;
*/
}

    .forum-post p {
        color: #5c544d !important;
        line-height: 32px;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
    }

        .forum-post p.complete {
            display: block !important
        }

    .forum-post a {
        color: #333
    }

    .forum-post hr {
        border: 1px dashed #cccccc
    }

.forum-replys {
    border: 1px solid #ccc;
    box-shadow: none;
    box-shadow: none
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sender-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sender-name {
    font-weight: bold;
    color: #ffc301;
    font-size: 18.5px
}

.device-tag {
    background-color: #00bf1e8c;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: #000000;
    opacity: .9
}

.post-date {
    color: #fff;
    background: #020e38;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    opacity: .9
}

.post-stats {
    display: flex;
    gap: 23px;
    color: #666;
    font-size: 15px;
}

    .post-stats .ri-heart-2-fill.redlike, .post-stats .ri-bookmark-2-fill.redlike {
        color: #cd5c5c
    }

.pointer {
    cursor: pointer
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.comment-form {
    background-color: white;
    border-radius: 15px;
    padding: 25px 30px;
    margin-top: 30px;
    border: 1px solid #e39c39;
}

.comment-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e39c39;
    border-radius: 10px;
    margin-bottom: 0;
    resize: vertical;
    min-height: 120px;
}

    .comment-input:focus {
        border: #e39c39 2px solid !important;
        outline: none !important;
        box-shadow: none !important
    }

.submit-btn {
    background-color: #e1991b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

    .submit-btn:hover {
        background-color: #d4af37;
    }

.counter {
    margin: 0 0 0 5px
}

@media screen and (max-width: 767px) {
    .post-stats {
        gap: 14px;
        font-size: 13.5px;
    }

    .forum-post {
        padding: 18px 12px;
    }
}



#content {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.hashtag-container {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.hashtag {
    display: inline-block;
    background: #ffeb9a;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

    .hashtag.selected {
        background: #98f3ce;
        color: #000000;
    }

#selected-tags {
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.forum-tags {
    margin: 0 4px;
    background: #f5d31d;
    border-radius: 10px;
    color: #fff !important;
    padding: 5px 6px;
    font-size: 14px;
    border-color: #5c544d;
    border: 1px solid #f4a460
}

.forum-tags:hover {
	background: #fff;
    color: #fbbd07 !important;
    border-color: #ffd800 !important;
    }

#Subject {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #eee;
    line-height: 35px;
    margin-bottom: 15px;
    padding: 5px 10px;
    font-weight: bold !important
}

    #Subject:focus, #Subject:active {
        border-color: #b8860b !important;
        outline: none !important
    }

.subject {
    font-weight: bold;
    font-size: 18.5px;
}

    .subject:hover {
        color: #e39c39 !important
    }

a {
    cursor: pointer
}

.forum-tags:before {
    font-family: "IcoFont";
    content: "\ed68";
    margin: 0 2px;
    font-size: 13px;
}
.forum-post img {
    max-width: 90%;
}