.blog-content h1{
    font-size: 30px !important;
    line-height: 35px !important;
}

.blog-content h2{
    font-size: 25px !important;
    line-height: 30px !important;
}

.blog-content h3{
    font-size: 20px !important;
    line-height: 25px !important;
}
.blog-content h4{
    font-size: 18px !important;
    line-height: 22px !important;
}
.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5, .blog-content h6{
    text-align: left !important;
}
.blog-img{
    text-align: center;
    padding: 10px;
}
.blog-img img{
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); !important;
    border-radius: 5px;
}
.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5{
    margin:10px 0px;
    text-align: left;
}
.blog-content p{
    margin:10px 0px;
    text-align: left;
}

.blog-content ul li, .blog-content ol li{
    font-size: inherit;
    padding: 5px 0px !important;
    font-size: 15px;
    line-height: 20px;
    text-align: left !important;
}
.blog-content ul{
    margin-left: 25px !important;
    list-style: disc !important;
    text-align: left !important;
}

.blog-content ol{
    margin-left: 5px !important;
    list-style: number !important;
    text-align: left !important;
}

.blog-content ol li{
    display: list-item;
    text-align: left !important;
    list-style: number;
}

.blog-content ul li{
    display: list-item;
    list-style: disc;
}
.blog-content hr{
    color:#b7b7cd;
    background: #b7b7cd;
}

.blog-content table{
    width: 100%;
    margin: 20px 5px;
    text-align: left;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border: none;
}
.blog-content table tbody tr th{
    font-weight: 600;
}
.blog-content table th, .blog-content table td{
    padding: 7px 15px;
    border: 1px solid #999;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    vertical-align: middle;
}
/* Custom scrollbar styles */
.blog-content table::-webkit-scrollbar {
    height: 7px; /* Horizontal scrollbar height */
}

.blog-content table::-webkit-scrollbar-track {
    background: #f0f0f0; /* Track color */
    border-radius: 5px;
}

.blog-content table::-webkit-scrollbar-thumb {
    background: #777; /* Thumb (scrollbar handle) color */
    border-radius: 5px;
}

/* For Firefox */
.blog-content table {
    scrollbar-color: #777 #f0f0f0; /* Thumb and track color */
    scrollbar-width: thin; /* Makes it thinner */
}

.blog-content blockquote{
    margin: 20px 10px;
    padding: 15px 15px;
    border-left: 5px solid #aed36e;
    background: #FFF9F6;
}
.sug-bg-title{
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #143d7b;
}
.entry-blog{
    font-size: 12px;
    margin:5px;
}
.user-info h5{
    font-size: 18px;
    line-height: 24px;
}
.user-info p{
    font-size: 13px;
}
.blog-share-icon span {
    color:#138bff;
}
.blog-share-icon a{
    color: #fff;
    font-size: 25px;
    margin-right: 10px;
}
.ad-banner{
    width: 100%;
    height: auto;
    margin-bottom: 45px;
    border-radius: 10px;
}
.accordion-item .accordion-button{
    font-size: 16px !important;
}
.data-reqs, .data-reqs p{
    line-height: 24px;
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    .bread-title h1{
        font-size: 25px;
        line-height: 30px;
        margin-top: 10px;
    }
    .blog-content h1{
        font-size: 25px;
        line-height: 30px;
    }

    .blog-content h2{
        font-size: 20px;
        line-height: 30px;
    }

    .blog-content h3{
        font-size: 18px;
        line-height: 25px;
    }

    .blog-content h4{
        font-size: 15px;
        line-height: 20px;
    }
}
.lg-outer{
    z-index: 999999 !important;
}

/* Enhanced CSS for dynamic blog pre and code elements */

pre {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

pre:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Add subtle gradient border effect */
pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444, #f59e0b);
    border-radius: 12px 12px 0 0;
}

code {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    padding: 0;
    border: none;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Inline code styling (when code is not inside pre) */
:not(pre) > code {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
}

/* Custom scrollbar for code blocks */
pre::-webkit-scrollbar {
    height: 8px;
}

pre::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

pre::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

pre::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

/* Responsive design */
@media (max-width: 768px) {
    pre {
        padding: 1rem;
        font-size: 0.8rem;
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    :not(pre) > code {
        font-size: 0.8em;
        padding: 0.15rem 0.3rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    pre {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-color: #334155;
        color: #f1f5f9;
    }
    
    :not(pre) > code {
        background: rgba(148, 163, 184, 0.1);
        color: #94a3b8;
        border-color: rgba(148, 163, 184, 0.2);
    }
}

/* Light mode adjustments */
@media (prefers-color-scheme: light) {
    pre {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border-color: #cbd5e1;
        color: #334155;
    }
    
    pre::before {
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444, #f59e0b);
    }
    
    :not(pre) > code {
        background: rgba(99, 102, 241, 0.08);
        color: #4338ca;
        border-color: rgba(99, 102, 241, 0.15);
    }
}

/* Animation for when code blocks come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

pre {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
pre:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    pre {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    
    pre::before {
        display: none;
    }
}