/**
 * --------------------------------------------------------------------
 * docmd : the zero-config documentation engine.
 *
 * @package     @docmd/core (and ecosystem)
 * @website     https://docmd.io
 * @repository  https://github.com/docmd-io/docmd
 * @license     MIT
 * @copyright   Copyright (c) 2025-present docmd.io
 *
 * [docmd-source] - Please do not remove this header.
 * --------------------------------------------------------------------
 */

.toc-sidebar,
.page-footer-actions,
.sidebar-header h1,
.heading-anchor {
    display: none !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content-area {
    flex: 1;
    min-height: 80vh;
}

.content-layout {
    display: block !important;
}

@media (max-width: 768px) {
    .sidebar {
        display: none !important;
    }
    
    .main-content-wrapper {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .sidebar-toggle-button {
        display: none !important;
    }
}