/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    color: #333;
}

h1, h2, h3 {
    color: #222;
}

.img-fluid {
    max-width: 90%;
    height: auto;
    border: 5px solid #ddd;
    padding: 5px;
    background: white;
}

.list-group-item {
    background: #e9ecef;
    border: none;
    font-size: 1.1em;
}

a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

footer {
    font-size: 0.9em;
    color: #777;
}

/* Code Block Styling */
pre code {
    display: block;
    background: #2d2d2d; /* Dark background */
    color: #ffffff; /* Light text */
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Courier New", monospace;
    overflow-x: auto; /* Enable scrolling for long lines */
}

