/* system-of-equations-solver-calculator.css */
.step-answer {
    white-space: pre-line;  /* This makes newline characters render as line breaks */
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    margin-top: 8px;
  }
  
  .final-answer-box {
    font-weight: bold;
    margin-top: 12px;
    font-size: 1.1em;
  }
  
  .main-input-box {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 80px;
    margin-bottom: 10px;
    white-space: pre-wrap;
  }
  
  .step {
    margin-bottom: 16px;
  }
  
  .step-header {
    font-weight: 600;
    margin-bottom: 4px;
  }
  