:root {
    --primary-text-color: #99ccff;
}

.post_view {
    background-color: var(--mainview-bk-color);
    color: var(--primary-text-color);
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 140px;
    padding: 25px;
    width: 70%;
    border-radius: 10px;
    position: relative;
}

.category_cont {
    background-color: rgba(31, 141, 152, 0.2);
    color: aqua;
    width: fit-content;
    text-align: end;
    overflow: auto;
    padding: 7px;
    font-size: small;
    float: right;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}

.top_right_corner {
    float: right;
    top: 0;
    right: 0;
    position: absolute;
}

.assbar {
    background-color: var(--footer-bk-colour);
    bottom: 0;
    width: 100%;
    height: 45px;
    position: fixed;
}

#footerbutton {
    background-color: var(--footer-bt-colour);
    padding: 3px;
    margin-right: 9px;
    margin-top: 10px;
    float: right;
    border: none;
    border-radius: 4px;
    height: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: small;
    color: #FFFFFF;
}

a {
    color: var(--primary-text-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-text-hover);
}

.pofps {
    font-size: medium;
}

.addresscont::-webkit-scrollbar {
    width: 3px;
    background-color: #b1c6ea;
}

.addresscont::-webkit-scrollbar-thumb {
    background-color: rgba(21, 29, 78, 0.8);
}

.post_card {
    position: relative;
    background-color: var(--card-bk-color);
    backdrop-filter: blur(7px);
    margin-top: 10px;
    width: 80%;
    height: 260px;
    min-height: 220px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    overflow-wrap: break-word;
    border-radius: 10px;
}

.addresscont {
    overflow: auto;
    max-height: 60%;
}

@media screen and (max-width: 1366px) {
    .post_view {
        width: 95%;
    }
    .category_cont {
        float: none;
    }

    div.post_card {
        margin-top: 8px;
        width: 95%;
        height: auto;
    }
}