/* Archivo de estilos básico para el maquetador de libros */
#book-editor-container {
    margin: 0 auto;
    max-width: 1200px;
    font-family: Arial, sans-serif;
}

#book-editor-menu {
    float: left;
    width: 20%;
    background: #f1f1f1;
    padding: 10px;
    box-sizing: border-box;
}

#book-editor-menu ul {
    list-style-type: none;
    padding: 0;
}

#book-editor-menu ul li {
    margin-bottom: 10px;
}

#book-editor-menu ul li a {
    text-decoration: none;
    color: #333;
}

#book-editor-main {
    float: right;
    width: 75%;
    box-sizing: border-box;
}

#editor-area {
    margin-bottom: 20px;
}

#ai-tools-panel {
    background: #fafafa;
    padding: 10px;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
}

#book-editor-footer {
    clear: both;
    padding-top: 20px;
    text-align: center;
}
