#overlay-text {
    width: 80%; 
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 20px auto; 
    line-height: 1.5;
    display: block;
    position: relative;
    overflow-y: auto;
    max-height: 400px; 
    white-space: pre-wrap;
    box-sizing: border-box;
  }
  
  #input-text {
    width: 80%;
    max-width: 80%;
    min-height: 60px;
    margin: 20px auto 10px auto;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    outline: none;
    box-sizing: border-box;
    display: block;
    resize: vertical;
  }
  
  #overlay-text span {
    font-family: monospace;
  }
  
  .cursor {
    border-left: 2px solid black;
    margin-left: 0;
    display: inline-block;
    width: 0;
    animation: blink 1s step-end infinite;
  }
  
  @keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: black; }
  }
  
  #message {
    color: red;
    margin: 5px auto;
    text-align: center;
  }
  
  #submit-button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  #submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  
  #disclaimer {
    font-size: 20px;
    margin-top: 5px;
    color: #777;
    text-align: center;
  }
  
  body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
  }
  
  #page-title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  
  .container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
  }