body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 90%;
    text-align: center;
}

.container h1 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

#inputBox {
    width: 100%;
    height: 50px; /* Reduced height */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
    font-size: 16px;
}

#submitButton {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
}

#submitButton:hover {
    background-color: #357ae8;
}

#submitButton:disabled {
    background-color: #a6c8ff;
    cursor: not-allowed;
}

#responseBox {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
    text-align: left;
    white-space: pre-wrap; /* Preserves whitespace and line breaks */
}

.hidden {
    display: none;
}
