.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header {
    padding: 16px 24px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.messagesContainer {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.emptyState {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 1rem;
}

.messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    max-width: 80%;
}

.userMessage {
    align-self: flex-end;
}

.assistantMessage {
    align-self: flex-start;
}

.messageContent {
    padding: 12px 16px;
    border-radius: 16px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.userMessage .messageContent {
    background-color: #0066cc;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.assistantMessage .messageContent {
    background-color: #f0f0f0;
    color: #333;
    border-bottom-left-radius: 4px;
}

.typing {
    color: #888;
    font-style: italic;
}

.inputForm {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
    background-color: #fff;
}

.input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 24px;
    outline: none;
    transition: border-color 0.2s;
}

.input:focus {
    border-color: #0066cc;
}

.input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.sendButton {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #0066cc;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sendButton:hover:not(:disabled) {
    background-color: #0052a3;
}

.sendButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
