#markdown-editor {
    display: none;
    width: 100%;
    height: 100%; /* Make it take full height */
    background: #fff;
    border: 1px solid #ccc;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    padding: 12px 15px;
    box-sizing: border-box;
    resize: none; /* Disable resize since we want it to be full screen */
  }
  
  .editor-container {
    height: calc(100vh - 100px); /* Adjust the 100px based on other elements like headers/footers */
    display: flex;
    flex-direction: column;
  }
  
  #editor {
    flex-grow: 1; /* Make the editor grow to fill the remaining space */
    box-sizing: border-box;
  }
  
  .button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
  }
  
  input.filename-input {
    padding: 8px 10px;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    margin-right: 10px;
    box-sizing: border-box;
  }
  
  button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #f0f0f0;
  }
  
  #save-notification {
    color: green;
    display: none;
    margin-top: 10px;
  }
  
  #debug-bar {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 12px;
    padding: 10px;
    background: #f4f4f4;
    border-top: 1px solid #ccc;
    display: none;
  }
  
  @media (max-width: 600px) {
    .button-container {
      flex-direction: column;
      align-items: stretch;
    }
    input.filename-input {
      margin-right: 0;
      margin-bottom: 10px;
      width: 100%;
    }
    button {
      width: 100%;
    }
  }