body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f0f4ff, #d8e3ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-container {
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.chat-box {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.title {
    margin-bottom: 20px;
    font-size: 1.3em;
    color: #333;
}

.input-area {
    display: flex;
    gap: 10px;
}

.input-area input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.input-area button {
    background-color: #c46423;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.input-area button:hover {
    background-color: #375acb;
}

.chat-response {
    margin-top: 20px;
    text-align: left;
}

.chat-response p {
    background: #f7f9ff;
    padding: 10px;
    border-radius: 10px;
    margin: 8px 0;
}

.user {
    background: #eaf1ff;
}

.bot {
    background: #f1f5ff;
}
