:root {
    --bg-body: #faf7f2; 
    --text-color: #3b536b; 
}
@media (prefers-color-scheme: dark) {
    :root {
        --bg-body: #1a1d21;
        --text-color: #e9ecef;
    }
}

html body {
    background-color: var(--bg-body);
    color: var(--text-color);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    margin: 0;
}

html body a{
    text-decoration: none;
    color:inherit;
}

.accordion-body li a {
    display: block;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.accordion-body li a:hover {
    background-color: rgba(0, 36, 102, 0.151);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/*Fuentes*/
.bold{
    font-weight: bold;
}