
        .post-container {
            width: auto;
            //background-color: #f8fff7;
            background-image: url('item_bg.png');
            margin-top: 2px;
            margin-right: auto;
            margin-left: auto;
            padding:10px;
            
            margin-bottom:25px;
                    border-radius: 6px;

        }

        .post-container a {
text-decoration: none;
color :#8fe835;
        }

                .post-content img {
border-radius: 12px;
padding:8px;
        }

        .post-header {
            padding:6px;
            display: flex;
width: 45%;
background-image: url('item_bg.png');
        border-radius: 6px;
        border-style: solid;
  border-width: 1px;
   border-color: black;
   font-size: 12px;
        }
        .post-content {
            margin-top:3px;
            margin-right: auto;
            margin-left: auto;
            background-color: #1c1c1b;
              padding-top: 4px;
        padding-right: 10px;
        padding-bottom: 2px;
        padding-left: 15px;
        border-radius: 6px;
        border-style: solid;
  border-width: 1px;
   border-color: black;
   width: auto;
        }
        .verified {
            color:#62ff42; 
            font-weight:bold;
            text-shadow: 2px 2px #30704c;
            padding:2px;
        }
        .post-title {
            //text-align: right;
        }
        .tooltip {
            width:80%;
    margin-top: 10px;
    padding: 15px;
    //background-color: #f9f9f9;
    border: 3px solid #ccc;
    border-radius: 20px;
    font-size: 0.9em;
}
 .bottom-links a {
color:white;
padding:8px;
text-decoration: none;
 }
.responsive-video {
    position: relative;
    padding-bottom: 28.125%; /* Half of 56.25% to reduce video size by 50% */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    max-width: 50%; /* Reduce max-width by 50% */
    margin: 0 auto; /* Center the video horizontally */
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.reply-number {
    float: right; /* Position the reply number to the right */
    /* Style as you wish */
}

/* When a reply is the target of the URL (i.e., after a "#" in the URL) */
.post-container:target {
    /* Highlight as you wish, e.g., change background color */
    background-color: #d0f0d0;
}

        .thread-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }
        .thread-item {
            width: 250px;
            text-align: center;
            margin-bottom: 2px;
            border-radius: 15px;
            padding: 6px;
            border: 2px solid #99d160;

        }
        .thread-item a {
text-decoration: none;
color :#8fe835;
        }

        .thread-item img {
            //width: 250px;
            //height: 250px;
            border-radius: 15px;
            border: 2px solid #618a38;
        }
        .thread-item-title {
            max-width: 250px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .thread-item.locked {
            background: #555751;
            border-color: #e6e6e6;
        }
        .thread-item.pinned {
            background: #5c5c43;
            border-color: #ffd900;
        }
        .thread-item:not(.locked):not(.pinned) {
            background: #565c4b;
            border-color: #99d160;
        }
        .new-thread {
            max-width: 600px;
            margin: auto;
            padding: 8px;
            border-radius: 15px;
            background-color: #565c4b;
            border: 2px solid #99d160;
        }
        .new-thread h2 {
            text-align: center;
            font-size:18px;
        }
        .new-thread input[type="submit"] {
            display: block;
            margin: auto;
        }