html{
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #222222;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 10px;
    padding: 4%;
}

input[type="text"], textarea {
    width: 80%;
    height: 240px;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 2px solid #EEE;
    border-radius: 4px;
    background-color: #EEE;
}

button {
    padding: 10px;
    background-color: orange;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: #EEE;
}

button.prompt-button {
    color: #999;
}

button:hover {
    background-color: #e69500;
}

#response {
    margin-top: 20px;
    width: 80%;
    background-color: #CCC;
    border: 2px solid #CCC;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
}


#modelToggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

div.toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    width: auto;
}

  .btn {
    border: 2px solid #FF9A00;
    display: inline-block;
    padding: 10px;
    position: relative;
    text-align: center;
    transition: background 600ms ease, color 600ms ease;
  }
  
  input[type=radio].toggle {
    display: none;
  }
  input[type=radio].toggle + label {
    cursor: pointer;
    min-width: 60px;
    color: #999;
  }
  input[type=radio].toggle + label:hover {
    background: none;
    color: #FF9A00;
  }
  input[type=radio].toggle + label:after {
    background: #FF9A00;
    color: #EEE;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
    width: 100%;
    z-index: -1;
  }
  input[type=radio].toggle.toggle-left + label {
    border-right: 0;
  }
  input[type=radio].toggle.toggle-left + label:after {
    left: 100%;
  }
  input[type=radio].toggle.toggle-right + label {
    margin-left: -5px;
  }
  input[type=radio].toggle.toggle-right + label:after {
    left: -100%;
  }
  input[type=radio].toggle:checked + label {
    cursor: default;
    color: #fff;
    transition: color 200ms;
  }
  input[type=radio].toggle:checked + label:after {
    left: 0;
  }


.prompt-button {
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.prompt-button:hover {
    background-color: #f1f1f1;
}


