/* General body styling */
.main-body {
    background-color: #4A6960;
    margin: 0;
    padding: 0;
    color: #FFE8E3;
    font-family: Arial, sans-serif;
  }
  
  /* Styling for the button */
  .v1-button {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: none;
  }
  
  /* Remove blue square and button styles */
  .v1-button:hover {
    background-color: transparent;
    outline: none;
    border: none;
  }
  
  /* Styling for the button's icon */
  .v1-icon {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    display: block;
  }
  
  .v1-button:hover .v1-icon {
    filter: brightness(0.8); /* Optional hover effect */
  }
  
  /* Header styling (Jane Doe text matches pre text) */
  h1 {
    color: #FFE8E3;
    text-align: center;
    font-family: Courier, monospace; /* Match preformatted text font */
    white-space: pre-wrap; /* Maintain spacing similar to pre text */
  }
  
  /* Preformatted text styling */
  pre {
    color: #FFE8E3;
    text-align: center;
    white-space: pre-wrap;
    font-family: Courier, monospace;
  }
  
  /* Footer styling */
  footer {
    color: #FFE8E3;
    text-align: center;
    margin-top: 20px;
  }
  