/* Blog styles */
.blog-card {
    transition: transform 0.2s;
    background-color: var(--navbar-bg);
    border: none;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .card-title a {
    color: var(--text-color);
}

.blog-card .card-title a:hover {
    color: var(--mint-color);
}

.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-content pre {
    background-color: var(--navbar-bg);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

.breadcrumb {
    background-color: var(--navbar-bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.breadcrumb-item a {
    color: var(--mint-color);
}

/* Pagination styles */
.pagination {
    gap: 0.5rem;
}

.page-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 25px !important;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-item.active .page-link {
    background: linear-gradient(45deg, rgb(255 107 107), rgb(255 230 109));
    border-color: transparent;
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

/* Previous/Next buttons */
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-link .fas {
    font-size: 0.8rem;
}

/* Ellipsis (...) styling */
.page-item.disabled .page-link:not([aria-disabled="true"]) {
    background: transparent;
    border: none;
}