    <style>
        /* Basic layout styling */

        .left-side, .right-side {
            box-sizing: border-box;
        }

#teboImage {
    max-width: 200px;  /* Optional, limit image size */
}

	.left-side {
    width: 20%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 30px;
}

        .right-side {
            width: 80%;
            height: 100vh;
            /*display: flex;*/
            flex-direction: column;
            justify-content: flex-start;
            /*align-items: center;*/
            padding-top: 30px;
        }

        form {
            width: 95%;
            display: flex;
            justify-content: space-between;
            align-items: left;
            padding: 10px;
        }


        textarea {
            width: 96%; /* Adjust width of textarea */
            height: 88px; /* 4 lines tall (88px) */
            padding: 10px;
            font-size: 1rem;
	    resize: none;
        }

        button {
            padding: 15px 20px;
            font-size: 1.1rem;
            margin-top: 12px;
            margin-left: 10px;
            cursor: pointer;
            height: 84px;
            width: 84px; /* Fixed size of the button */
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .response {
            margin-top: 2px;
            margin-left: 10px;
            font-size: 1.1rem;
            color: #333;
            width: 95%; /* Make sure the response area is the same width as the prompt area */
        }


        .response-box {
            max-height: calc(100vh - 88px - 88px - 30px); /* Adjust for prompt box and button */
            overflow-y: auto;
            padding: 10px;
            background-color: #F4F4F9;
            color: #080808;
            border-radius: 5px;
            text-align: left;
            width: 100%;
            margin-top: 10px;
        }

        /* Styling for preformatted text in the response */
        .response-box pre {
            background-color: #eaeaea;
            border: 1px solid #4682B4;
            border-radius: 5px;
            padding: 10px;
            font-family: 'Courier New', Courier, monospace;
            white-space: pre-wrap;
            word-wrap: break-word;
        }



        /* Responsive styling for smaller screens */
        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }

            .left-side, .right-side {
                width: 100%;
                padding: 10px;
            }

            form {
                flex-direction: column;
                align-items: stretch;
            }

            textarea {
                width: 100%;
                height: 150px;
            }

            button {
                margin-left: 0;
                width: 100%;
            }
        }


	

    </style>
