/* styles.css */
body {
    font-family: 'Courier New', monospace;
    background-color: #282c34;
    color: #e9e9e9;
    text-align: center;
    margin: 30px;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  textarea {
    width: 90%;
    height: 200px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #1e2127;
    color: #e9e9e9;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
  }
  
  select {
    width: 50%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 16px;
    background-color: #1e2127;
    color: #e9e9e9;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  #response {
    width: 90%;
    height: 200px;
    margin-top: 20px;
    padding: 10px;
    background-color: #1e2127;
    color: #e9e9e9;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow-y: scroll;
    text-align: left;
    white-space: pre-wrap;
  }
  