/* src/components/MathEditor.css */
.editor-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  .mathlive-editor {
    margin-bottom: 20px;
  }
  
  .latex-output {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
  }
  
  pre {
    margin: 0;
    font-family: monospace;
    white-space: pre-wrap;
  }

  math-field {
    box-sizing: border-box;
    padding: 0.5em;
    width: calc(100% - 20px) ;
    font-size: 1.5em;
    border-radius: 8px;
    margin : 20px 10px;
    border: 1px solid #CACFD7;
  }

  .ML__menu-toggle {
    display: none !important;
  }
  