/* style.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
}

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

p {
    margin: 0;
    line-height: 1.4;
}

br {
    line-height: 1.5;
}
  
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
}

pre {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}

img {
    max-width: 100%;  /* Image will not exceed the width of the container */
    height: auto;     /* Maintain aspect ratio */
    display: block;
    margin: 20px auto; /* Center images */
}

.logo {
    height: 50px; /* Adjust the size as needed */
}

/* Style for the navigation bar */
nav {
    display: flex;
    align-items: center;
    background-color: #f8f8f8; /* Optional: background color */
    padding: 10px;
}

/* Logo styles */
nav a img.logo {
    height: 50px; /* Adjust the size as needed */
    margin-right: 20px;
}

/* Navigation links container */
.nav-links {
    display: flex;
    align-items: center;
}

/* Navigation links */
.nav-links a {
    text-decoration: none;
    color: #333;
    margin-right: 15px;
    font-weight: bold;
}

/* Hover effect for navigation links */
.nav-links a:hover {
    color: #007acc; /* Optional: change color on hover */
}
