body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(to right, #1a4b8c, #a8d0ff);
}

#messageBox {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 5px;
    resize: none;
}

#messageContainer {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 300px;
    max-height: 80vh;
    overflow-y: auto;
}

.message {
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    word-wrap: break-word;
    animation: slideIn 0.3s ease-out;
    max-width: 80%;
}

.user-message {
    background-color: #e3f2fd;
    margin-left: auto;
}

.bot-message {
    background-color: #f5f5f5;
    margin-right: auto;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#title {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: bold;
    color: #333;
    font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
}
