/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.chat-box {
    width: 30vw;
    height: 80vh;
    position: fixed;
    bottom: 0;
    right: 20px;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
}

.chat-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-content {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #f1f1f1;
}

.bot-message, .user-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.bot-message {
    background-color: #d1e7fd;
}

.user-message {
    background-color: #d1ffd6;
    text-align: right;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ccc;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chat-input button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#open-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
