/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

pre {
    font-family: Arial, sans-serif;
    background-color:whitesmoke;
    padding-top: 1rem;
    padding-left: 2rem;
}

article {
    padding: 0.25rem;
}

.sidebar {
    background-color: #333;
    color: white;
    width: 200px;
    min-height: 100vh;
    padding-top: 20px;
    position: fixed;
}

.sidebar nav {
    text-align: left;
}

.nav-frame {
    border: none;
    width: 100%;
    height: 100%;
}

.main-content {
    margin-left: 200px;
    padding: 20px;
}

/* Navigation links */
nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px;
    margin: 0 20px;
}

nav a:hover {
    background-color: #555;
}

/* Logo styling */
.nav-logo {
    display: block;
    margin: 0 auto;
    width: 110px;       /* Adjust width as needed */
    height: auto;      /* Keeps aspect ratio */
    padding: 10px 0;   /* Adds space around the logo */
}

.botimage {
    display: block;
    margin: 0 auto;
    width: 500px;       /* Adjust width as needed */
    height: auto;      /* Keeps aspect ratio */
    padding: 10px 0;   /* Adds space around the logo */
}

.tomllogo {
    display: block;
    width: 80px;       /* Adjust width as needed */
    height: auto;      /* Keeps aspect ratio */
    padding: 10px 0;   /* Adds space around the logo */
}

.pkgimg {
    display: block;
    width: 300px;       /* Adjust width as needed */
    height: auto;      /* Keeps aspect ratio */
    padding: 10px 0;   /* Adds space around the logo */
}

/* Responsive design */
@media (max-width: 600px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .main-content {
        margin-left: 0;
    }
    nav a {
        margin: 5px 0;
    }
}

