/* Custom styles for the blog */
body {
    padding-top: 56px;
}

@media (min-width: 992px) {
    body {
        padding-top: 72px;
    }
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Post content images */
.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

/* Comment section */
.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

/* Admin dashboard */
.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/* Responsive tables */
.table-responsive {
    overflow-x: auto;
}

/* Custom card styles */
.card {
    margin-bottom: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    font-weight: 600;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}