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

header {
    background: #2e7d32;
    color: white;
    padding: 15px;
    text-align: center;
}

.quick-buttons {
    text-align: center;
    padding: 10px;
}

.quick-buttons button {
    margin: 5px;
    padding: 8px 12px;
    border: none;
    background: #4caf50;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.chat-container {
    height: 400px;
    overflow-y: auto;
    padding: 10px;
    background: white;
}

#chatBox div {
    margin: 8px 0;
}

.user {
    text-align: right;
    color: #1b5e20;
}

.bot {
    text-align: left;
    color: #000;
}

.input-area {
    display: flex;
    padding: 10px;
    background: #e8f5e9;
}

.input-area input {
    flex: 1;
    padding: 8px;
}

.input-area button {
    margin-left: 5px;
    padding: 8px 10px;
    background: #2e7d32;
    color: white;
    border: none;
}

.contact {
    text-align: center;
    margin: 15px;
}

.call, .whatsapp {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
}

.call {
    background: #1565c0;
}

.whatsapp {
    background: #25D366;
}

footer {
    text-align: center;
    padding: 10px;
    background: #2e7d32;
    color: white;
}
