.editor-container {
    max-width: 800px;
    margin: auto;
    background-color: #252526;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
  }
  
  .editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #333333;
    border-bottom: 1px solid #444;
  }
  
  #run-button {
    background-color: #0e639c;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #run-button:hover {
    background-color: #1177bb;
  }
  
  #code-editor {
    width: 100%;
    height: 250px;
    background-color: #1e1e1e;
    color: #d4d4d4;
    border: none;
    padding: 16px;
    font-size: 16px;
    resize: none;
    outline: none;
  }
  
  .output {
    padding: 16px;
    background-color: #1e1e1e;
    border-top: 1px solid #444;
  }
  
  #output-area {
    color: #dcdcaa;
    white-space: pre-wrap;
  }

  .text-normal {
    font-size: 20px;
    color: #FFFFFF;
  }