.blog_details_page {
    position: relative;
}

.bio-pic img {
    max-width: 100%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.bio-fb a {
    font-size: 25px !important;
}

.post-img {
    width: 80%;
    display: block;
    margin: auto;
}

.save-btn {
    background-color: rgba(106, 108, 108, 0.207);
    color: var(--primary-color);
    font-size: 15px;
    padding: 3px 30px;
    text-decoration: none;
    margin-right: 10px;
    width: fit-content;
    font-weight: 400;
    float: right;
}

.post-img img {
    border: 1px solid var(--primary-color);
    object-fit: cover;
}

.category {
    color: var(--primary-color);
}

.single-content p {
    color: var(--text-grey);
}

.blog-container {
    background-color: var(--bs-bg-light);
}

.related-post .blog-card .blog-script {
    padding: 20px 15px;
}

.blog-script h5 {
    font-weight: 400;
    font-size: 20px;
}

.posted-time {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
}

.read-more-link {
    background-color: rgba(106, 108, 108, 0.207);
    color: var(--primary-color);
    font-size: 15px;
    padding: 5px 10px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 400;
}

.comment-btn {
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.11) 0rem 0.25rem 0.4375rem -0.0625rem,
        rgba(0, 0, 0, 0.07) 0rem 0.125rem 0.25rem -0.0625rem;
    padding: 10px 20px;
    background-image: linear-gradient(310deg,
            rgb(35, 48, 50),
            rgb(27, 137, 150));
    border: none;
    transition: all 0.2s;
}

.comment-text {
    padding-left: 0 !important;
}

.comment-bio-pic {
    padding-right: 0 !important;
}

.date-comment {
    font-size: 13px;
}

#notification {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background-image: linear-gradient(310deg,
            rgb(35, 48, 50),
            rgb(27, 137, 150));
    border-radius: 10px;
    padding: 10px 30px;
    color: var(--white);
    width: fit-content;
    float: right;
    z-index: 999;
}

.notification-container {
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-delete {
    font-size: 14px;
}

@media (max-width: 576px) {
    .post-img {
        width: 100%;
        display: block;
        margin: auto;
    }

    .bio-pic img {
        width: 50px;
        height: 50px;
    }

    .vcard span {
        font-size: 13px;
    }

    .bio-fb span {
        font-size: 14px;

    }

    .save-btn {
        float: left;
    }
}
