

body {
    display: flex;
    margin: 0;
    height: 100vh; /* Full viewport height */
}

.left-column {
    width: 35%;
    background-color: lightgray; /* Example background color */
    padding: 20px;
    box-sizing: border-box; /* Include padding in the width calculation */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative; /* Needed for absolute positioning of children */
}

#companyLogo {
    /* Adjust logo size as needed */
    width: 250px;
    height: auto;
    margin-bottom: 50px; /* Space below the logo */
}

.left-column h1 {
    margin: 0;
    text-align: center;
    width: 100%; /* Ensure it spans the full width of the parent container */
}

.sub-header {
    color: grey;
    font-size: smaller;
    margin-bottom: 20px; /* Space below the sub-header */
    text-align: center; /* Center the text horizontally */
    width: 100%; /* Ensure it spans the full width of the parent container */
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Full width of the left column */
}

.links-container a {
    text-decoration: none;
    color: blue;
    margin-bottom: 10px;
}

.version-info {
    position: absolute; /* Absolute positioning */
    bottom: 0; /* Align to the bottom */
    left: 0; /* Align to the left */
    width: 100%; /* Span the full width of the left column */
    text-align: left; /* Center the text */
    color: grey;
    font-size: smaller;
    padding: 10px 0; /* Add some padding around the text */
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: right;
    height: 100vh;
    background-color: white; /* Set background color of the window to white */
}

.right-column {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: right;
    padding: 20px;
    background-color: white; /* Set background color of the container to white */
}

#chatArea {
    flex-grow: 1;
    width: 100%;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 10px;
    height: 400px;
    background-color: white; /* Set background color of the chat area to white */
    border-radius: 10px;
    border: none;
}


.message {
    display: inline-block;
    clear: both; /* Clear floats to ensure each message is on its own line */
    margin: 5px;
    padding: 10px;
    border-radius: 8px;
    max-width: 95%;  /* Maximum width of message bubbles */
}

.sent {
    background-color: lightgreen;
    text-align: left;
    float: right;  /* Align sent messages to the right */
}

.received {
    background-color: #eee;
    text-align: left;
    float: left;  /* Align received messages to the left */
}
.temp {
    background-color: white;
    text-align: left;
    float: left;  /* Align received messages to the left */
}


.inputArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white; /* Set background color of the input area to white */
}

#userInput {
    flex-grow: 1;
    margin-right: 5px;
    border-radius: 10px;
    border: 1px solid #ccc; /* Add a tiny border to the text box */
}

#sendButton {
    width: 50px;
    height: 50px;
    background-color: white; /* Set background color of the button to white */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    border: none;
}

#sendButton img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.code-container {
    background-color: #333; /* Dark grey background for the container */
    padding: 0;
    position: relative;
    border-radius: 5px;
    margin-bottom: 10px;
}

.code-lang {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.code-block {
    background-color: #333;;
    color: white;
    margin: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
}


/* Media query for mobile screens */
@media (max-width: 768px) {
    body {
        flex-direction: column; /* Stack columns vertically */
    }

    .left-column, .right-column {
        width: 100%; /* Both columns take full width on small screens */
        /* Adjust other styles as needed for mobile layout */
    }

    /* Additional mobile-specific styles can go here */
}
