body {
    background-color: #1e1e1e;
    color: #afafaf;
    font-family: Arial, sans-serif;
}

.container {
    width: 60%; /* Gebruik 60% van de breedte van het scherm */
    margin: 0 auto; /* Centreer de container horizontaal */
    padding: 20px;
    background-color: #252526;
    border-radius: 10px;
}

.container h1 {
    text-align: right;
    color: #3c78c5;
}

input[type="text"], textarea {
    background-color: #333;
    color: #ffffff;
    border: 1px solid #555;
    padding: 5px;
}

button {
    background-color: #0a84ff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

.logo img {
    max-height: 60px;
}

.links a {
    text-decoration: none;
    color: #ffff;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.links a:hover {
    text-decoration: none;
    color: #ffff;
    background-color: #3c78c5;
}

.copy-btn {
    margin-left: 10px;
    cursor: pointer;
    background-color: #0a84ff;
    color: white;
    border: none;
    padding: 5px;
    position: relative;
    top: -5px;
}

.code-block {
    background-color: #282c34;
    color: #abb2bf;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    position: relative;
    overflow: auto;
    font-size: 16px; /* Pas deze waarde aan naar de gewenste grootte */
}

.code-block .copy-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}
ul {
    list-style: none;
}

ul li {
    list-style: disc;
}

ul li ul {
    list-style: square;
    background-color: #3a3a3b;
}
ul li ul li {
    list-style: square;
 /*   background-color: #252526;*/
 /*   margin: 10px 0;*/
 /*   padding: 10px;*/
 /*   border-radius: 5px;*/
}
ul li ul li ul li {
    list-style: circle;
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

a:hover {
    color: #3c78c5;
    text-decoration: underline;
}

