/* General styling for the interface */
body {
    font-family: 'Arial', sans-serif;
    background-color: #101010;
    color: #f0f0f0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 400px;
    background-color: #1b1b1b;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 24px;
    text-align: center;
    color: #00aaff;
    margin-bottom: 20px;
}

/* Chat box styles */
.chat-box {
    background-color: #2b2b2b;
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #333;
}

/* Message styling */
.message {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message .text {
    background-color: #00aaff;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 75%;
}

.message.user .text {
    background-color: #0066cc;
}

/* Input and button area */
.input-area {
    display: flex;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    color: #fff;
    margin-right: 10px;
}

button {
    background-color: #00aaff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0088cc;
}
