body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    margin-bottom: 60px; /* Space for the fixed header */
}

main {
    margin-bottom: 60px; /* Space for the fixed footer */
}

/* Code Block Styling */
pre {
    background-color: #f5f5f5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow-x: auto;
    margin-top: 20px;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #333;
}

/* Scroll to Top Button */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
}

.scroll-to-top:hover {
    background-color: #ffcc00;
    color: #333;
}

/* Sidebar Styling */
#sidebar {
    margin-top: 60px; /* Adjust for header height */
    padding-top: 20px;
}

#sidebar .list-group-item {
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

#sidebar .list-group-item:hover {
    background-color: #f8f9fa;
}

#sidebar .list-group-item a {
    color: #333;
    text-decoration: none;
}

#sidebar .list-group-item a:hover {
    color: #ffcc00;
}

#search-results {
    margin-top: 20px;
}

#resultsContainer h4 {
    margin: 10px 0;
}

#resultsContainer a {
    text-decoration: none;
    color: #007bff;
}

#resultsContainer a:hover {
    text-decoration: underline;
}


