/* ============================
   HANDLEIDING LAYOUT
   ============================ */

/* Layout container */
.handleiding-container {
    display: flex;
    width: 100%;
    height: calc(100vh - 60px); /* past bij jouw bestaande header/footer */
    overflow: hidden;
    background-color: var(--background-color, #f5f5f5);
}

/* Sidebar */
#sidebar {
    width: 260px;
    background: #f3f3f3;
    border-right: 1px solid #ddd;
    padding: 20px;
    overflow-y: auto;
    font-family: inherit; /* gebruikt jouw bestaande font */
}

#sidebar h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

#sidebar ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#sidebar ul li {
    margin-bottom: 8px;
}

#sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 4px 0;
    display: block;
    transition: 0.2s;
}

#sidebar ul li a:hover {
    color: #0078ff; /* jouw bestaande blauwe accentkleur */
}

#sidebar ul ul {
    margin-left: 15px;
    margin-top: 4px;
}

/* Content */
#content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: white;
}

#content h1, #content h2 {
    margin-top: 0;
    color: #222;
}

/* Zoekbalk */
#search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
}

