/* Estilos específicos para las páginas de los tomos */
.tomo-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.tomo-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #0A2A4E;
    border-bottom: 2px solid #F58220;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.bottom-nav-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
.nav-link {
    color: #F58220;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}
.nav-link:hover {
    text-decoration: underline;
}

/* --- ESTILO FINAL: Sketch de Arduino con Colores --- */
.code-container {
    border-radius: 8px;
    border: 1px solid #ccc;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00828A;
    padding: 0.6rem 1.2rem;
    border-bottom: 1px solid #006C73;
}
.code-header span {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}
.copy-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
/* La librería highlight.js controlará el fondo y colores del texto */
.code-block {
    font-family: 'Source Code Pro', monospace;
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* --- Fin de los nuevos estilos --- */

.protagonista-section {
    background-color: #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border-left: 5px solid #0A2A4E;
}
.image-container {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.tomo-content ul {
    list-style-type: square;
    padding-left: 20px;
}
