
body, html {
    height: 100%;
    margin: 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    
}

h1 {
    color: white; /* Change color if needed */
    margin: 20px 0; /* Adds space around the heading */
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
}

}

h2 {
    color: rgba(28, 73, 42, 0.78); /* Change color if needed */
    margin: 20px 0; /* Adds space around the heading */
    text-align: center;
}

.image-container img {
    max-width: 50%; /* Adjust as needed */
    max-height: 300px; /* Adjust as needed */
    height: auto;
    display: block; /* Ensures it's a block-level element */
    margin: 0 auto; /* Centers the image horizontally */
    border-radius: 8px;
}


body {
    font-family: Arial, sans-serif;
    /*display: flex;     NOTE:  Causes horizontal alignment*/
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;

    background-image: url('images/gpt_bk.JPG'); /* Setting the background image */
    background-size: cover; /* Cover the entire body */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixed background image */
}

.container {
    text-align: center;
    background-color: rgba(220, 250, 230, 0.78);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.hairline {
    border: none; /* Remove default border */
    border-top: 1px solid #000; /* Create a thin line, change the color as needed */
    margin: 10px 0; /* Add some margin above and below the line */
}


#userPrompt {
    width: 90%;
    height: 80px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

button {
    padding: 3px 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

#sendButton {
    margin-right: 5px; /* Adjust the id 'sendButton' based on your actual Send button id */
}


button:hover {
    background-color: #0056b3;
}

#response {
    max-height: 400px; /* Maximum height before scrolling */
    overflow-y: auto; /* Enables vertical scrolling */
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5; /* Example background color */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Example shadow for a lifted effect */
}
