details {
    margin: 5px 0;
}
summary {
    cursor: pointer;
    padding: 5px;
}

.content img {
    max-width: 500px; /* Limits image size as requested */
    height: auto; /* Maintains aspect ratio */
    display: block;
    margin: 10px 0;
}

/* Footer styling */
.footer {
    margin-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.footer p {
    margin: 5px 0;
}


body { 
    /* background-color: #363030; */
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    margin: 0; 
    padding: 0; 
    grid-template-columns: 250px 1fr;
    display: flex;
}

.content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 20px;
    margin-left: 280px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: calc(100% - 270px);
}

h1 {    color: #2c3e50;
        border-bottom: 2px solid #3498db;
        border-top: 2px solid #3498db;
        padding-bottom: 10px;
        text-align: center;}

h2 { color: #2980b9; margin-top: 30px; }
.function { 
    background: #f9f9f9; 
    border-left: 4px solid #3498db; 
    padding: 15px; 
    margin-bottom: 20px; 
}
.function-name { 
    color: #2c3e50; 
    font-weight: bold; 
    font-size: 1.2em;
    margin-bottom: 10px;
}
.section-title { 
    font-weight: bold; 
    color: #16a085; 
    margin-top: 15px;
}

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


footer {
    margin-top: 30px;
    font-size: 0.8em;
    color: #7f8c8d;
}

.token.command {
    color: #005cc5;
}

.token.parameter {
    color: #22863a;
} 


p {
    text-align: justify;
    text-indent: 2em; /* Indent the first line */
    line-height: 1.6;
    font-size: 1.1em;
    color: #2d3436;
    font-family: 'Georgia', serif;
    margin: 1em auto;
    max-width: 800px;
    padding: 0 1em;
}