
/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0px;
    padding: 0px;
    background-color: #f4f4f4;
}
h1, h2, h3 {
    color: #333;
}
.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
code {
    background-color: #f4f4f4;
    padding: 2px 5px;
    border-radius: 3px;
} */


        /* Navbar */
        /* .navbar {
            background: #333;
            padding: 0;
            text-align: center;
        }

        .navbar a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: inline-block;
            font-size: 18px;
        }

        .navbar a:hover {
            background: #555;
        } */

        /* Blog Content */
        /* .blog-content {
            padding: 20px;
            text-align: justify;
        }

        .blog-title {
            font-size: 28px;
            font-weight: bold;
            color: #222;
            text-align: center;
            margin-bottom: 10px;
        }

        .blog-meta {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        /* Responsive */
        /* @media (max-width: 768px) {
            .container {
                width: 95%;
            }

            .navbar a {
                padding: 10px 15px;
                font-size: 16px;
            }
        } */ 
        @import url(machinelearning.css);
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


/* Blog Header */
.blog-header {
   background: #007bff;
   color: white;
   padding: 50px 10%;
   text-align: center;
}

.blog-header h1 {
   font-size: 2.5rem;
}

.blog-header p {
   font-size: 1.1rem;
   margin-top: 10px;
}

/* Blog Content */

.blog-content {
   max-width: 800px;
   margin: auto;
   padding: 40px;
   background: white;
    
   color:black;
   box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
   margin-top: 30px;
   
}

.blog-content h2 {
   color: #007bff;
   margin-top: 20px;
}

.blog-content h3 {
   color: #222;
   margin-top: 15px;
}

.blog-content p {
   font-size: 1.1rem;
   line-height: 1.6;
   margin-top: 10px;
}

.blog-content ul {
   padding-left: 20px;
   margin-top: 10px;
}

.blog-content ul li {
   margin-bottom: 8px;
}

/* Footer */
footer {
   text-align: center;
   padding: 20px;
   background: #222;
   color: white;
   margin-top: 30px;
}
/* Code Block Styling - VS Code Theme */
pre {
    background-color: #1e1e1e; /* VS Code Dark Theme */
    color: #d4d4d4;
    font-family: "Consolas", "Courier New", monospace;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #007acc; /* Blue accent like VS Code */
    overflow-x: auto;
    white-space: pre-wrap;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

code {
    background-color: #252526;
    color: #dcdcdc;
    font-family: "Consolas", "Courier New", monospace;
    padding: 2px 5px;
    border-radius: 4px;
}

/* Prism.js Syntax Highlighting Customization */
pre[class*="language-"] {
    padding: 12px;
    border-radius: 5px;
    overflow-x: auto;
}

.token.comment { color: #6A9955; font-style: italic; }  /* Comments - Green */
.token.keyword { color: #569CD6; }  /* Keywords (class, public, int) - Blue */
.token.string { color: #CE9178; }  /* Strings - Orange */
.token.function { color: #DCDCAA; }  /* Function Names - Yellow */
.token.number { color: #B5CEA8; }  /* Numbers - Light Green */
.token.operator { color: #D4D4D4; }  /* Operators (+, -, =, etc.) */
.token.variable { color: #9CDCFE; }  /* Variables - Light Blue */
