﻿.boardTitle {
    font-size:1.1em;
    font-weight: bold;
    padding: 4px 0px 4px 0px;
}

.boardDescription {
}

.boardContainer {
    border: 2px solid black;
    margin: 8px;
    padding: 5px;
}

.topicContainer {
    border: 2px solid black;
    margin: 8px;
    padding: 5px;
}

.topicTitle {
    font-size: larger;
    padding: 4px 0px 4px 0px;
}

.pageNumber {
    margin: 2px;
}

.postContainer {
    border: 2px solid black;
    margin: 8px;
}

.postHeader{
    display:flex;
    padding:8px;
    background-color:lightgray;
    font-weight: bold;
    border-bottom: 1px solid black;
}

.postHeader > div {
    padding-right: 10px;
}

.postTopic {
    padding: 8px;
    background-color: lightgray;
    font-weight: bold;
}

.postToolbar {
    text-align: right;
    flex-grow: 1;
    font-size: 1.2em;
}

.postToolbar a {
    padding:4px;
}

.postToolbarButtonSection {
    padding: 5px;
    flex-grow: 1
}

    .postToolbarButtonSection button {
        margin-bottom: 4px;
    }

.postText {
    margin: 5px;
    padding: 5px;
    overflow-wrap: anywhere;
}

.postHtml a {
    text-decoration: underline;
}

.postEmoji {
    font-size: 1.4em;
    font-style: normal !important;
}

.postImage {
    width: 100%;
    object-fit: scale-down;
    height: auto;
}

.postAudio {
    display: block;
    width: 100%;
}

.postYoutube {
    width: 300px;
    height: 200px;
}

    .postPreview {
    width:100%;
    padding:10px;
    border: 1px solid black;
}

.bbCodes.desktop {
    display: none;
}

.bbCodes.mobile {
    display: block;
}

.emojis {
    display: none;
    font-size: large;
    padding: 5px;
}

.animatedEmoji {
    vertical-align: middle;
    height: 20px;
}

.animatedEmojiBig {
    vertical-align: middle;
    height: 25px;
}

.searchHighLight {
    color: orangered;
    font-weight: bold;
}

.postUser{
    position: relative;
}

.boardSignature {
    border-top: 1px solid gray;
    margin: 15px 0px 10px 0px;
    font-style: italic;
}

.bosseBusOfTheYear {
    position: absolute;
    color: #fcc305;
    font-size: 0.9em;
    top: -5px;
    left: 8px;
}

@media screen and (min-width: 850px) {
    .postImage {
        width: auto;
        max-width: 500px;
        height: auto;
    }

    .postYoutube {
        width: 500px;
        height: 350px;
    }

    .bbCodes.desktop {
        display: block;
    }

    .bbCodes.mobile {
        display: none;
    }

    .emojis {
        display: block;
    }
}

@media screen and (min-width: 1100px) {
    .postImage {
        width: auto;
        max-width: 700px;
        height: auto;
    }

    .postYoutube {
        width: 500px;
        height: 350px;
    }

    .bbCodes {
        display: block;
    }

    .emojis {
        display: block;
    }
}


