body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.chat-container {
    max-width: 1200px; /* Doubled the width */
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px; /* Increased padding for a larger feel */
}

.chat-title {
    font-size: 2rem; /* Increased the font size */
    font-weight: bold;
    margin-bottom: 20px;
}

.chat-description {
    margin-bottom: 20px; /* Increased space below description */
}

.chat-box {
    width: 100%;
    max-width: 2400px; /* Doubled the width */
    height: 1200px; /* Doubled the height */
    overflow-y: scroll;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px; /* Increased padding */
    margin-bottom: 20px;
}

textarea {
    width: calc(100% - 140px); /* Adjusted to match the new width */
    max-width: 2400px; /* Doubled the max width */
    padding: 16px; /* Increased padding */
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 20px; /* Increased margin */
    resize: vertical;
    min-height: 50px; /* Doubled the minimum height */
}

button {
    padding: 16px 30px; /* Increased button size */
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.loading {
    margin-top: 20px; /* Increased space for visibility */
    font-weight: bold;
    color: #007bff;
}

.clear-chat-button {
    background-color: orange; /* Set the background color to orange */
    color: #fff; /* Keep the text color white for contrast */
}