body {
    font-family: "Ubuntu Mono", monospace;
    background-color: #767473;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Aligns the chat box to the bottom */
    max-width: 700px;
    min-width: 700px;
    margin: auto;
    padding: 20px;
    background-color: #767473;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

.tinny-text {
    font-size: 14px;
    color: #333; /* Adjust color as needed */
    text-align: center; /* Center the text horizontally */
    position: absolute; /* Positioning method */
    top: 99%; /* Move the top of the element to the middle of the screen */
    left: 50%; /* Move the left of the element to the middle of the screen */
    transform: translate(
        -50%,
        -50%
    ); /* Move the element back by half its own width and height */
}

.welcome-message {
    font-size: 45px;
    color: #333; /* Adjust color as needed */
    text-align: center; /* Center the text horizontally */
    position: absolute; /* Positioning method */
    top: 5%; /* Move the top of the element to the middle of the screen */
    left: 50%; /* Move the left of the element to the middle of the screen */
    transform: translate(
        -50%,
        -50%
    ); /* Move the element back by half its own width and height */
}

.message-container {
    overflow-y: auto;
    max-height: 300px; /* Adjust as needed */
}

.message {
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 10px;
}

.user-message {
    background-color: #dcf8c6; /* Light green for user messages */
    align-self: flex-end;
    color: #333; /* Dark text color for user messages */
}

.system-message {
    background-color: #f0f0f0; /* Light gray for system messages */
    align-self: flex-start;
    color: #333; /* Dark text color for system messages */
}

.messages {
    flex-grow: 1;
    overflow-y: auto; /* Allows scrolling */
    margin-bottom: 20px;
}

.chat-box {
    display: flex;
    align-items: center;
    background-color: #333;
    border-radius: 20px;
    padding: 5px 10px;
    margin-top: 20px;
}

input[type="text"]#startMessage {
    flex-grow: 1;
    border: none;
    background-color: transparent;
    color: #ccc;
    padding: 10px 15px;
    border-radius: 15px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.response-container {
    display: none; /* Initially hidden */
}
