/*RESET BASE*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}

body {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
}

/*MENU LATERALE*/
.indice {
    position: fixed;
    width: 250px;
    height: 100vh;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.indice ul {
    list-style: none;
    padding : 20px 10px;
}

.indice li {
    margin-bottom: 10px;
}

.indice a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.indice a:hover {
    color: #007bff;
}

/*CONTENUTO PRINCIPALE*/
.main-doc{
    margin-left: 250px;
    padding: 40px;
    width: 100%;
}

section {
    margin-bottom: 40px;
}

header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

p {
    margin-bottom: 15px;
}

/*SBLOCCHI DI CODICE*/
code {
    display: block;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-left: 4px solid #f0db4f;
    padding: 15px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
    margin: 20px 0;
}
