    /* GLOBAL PAGE */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: #1e1e1e;
    color: #ccc;
    padding: 25px 20px;
    overflow-y: auto;
    border-right: 2px solid #000;
}

.sidebar h2 {
    color: #4fc3f7;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.sidebar a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 6px 2px;
    font-size: 15px;
}

.sidebar a:hover {
    color: #4fc3f7;
}

/* MAIN CONTENT */
.main {
    margin-left: 350px;
    padding: 30px;
}

/* TITLES */
.section-title {
    font-size: 32px;
    color: #003399;
    margin-top: 40px;
}

/* VS CODE STYLE CODE BLOCK */
.code-box {
    background: #1e1e1e;
    color: #dcdcdc;
    padding: 15px;
    border-radius: 6px;
    font-family: Consolas, monospace;
    font-size: 15px;
    white-space: pre-wrap;
    border: 1px solid #333;
    margin-top: 15px;
}

.comment { color: #6dc26d; }
.cmd { color: #9cdcfe; }
.str { color: #ce9178; }
.key { color: #c586c0; }
/* PRINT MODE */
@media print {

    /* Hide sidebar completely */
    .sidebar {
        display: none !important;
    }

    /* Let main take full width */
    .main {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* Optional: remove background colors for cleaner print */
    body {
        background: #fff !important;
    }

}