#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    overflow: hidden;
    border: 1px solid #ccc;
	z-index: 11;
}

#chat-header {
    background: #0073e6;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

#chat-close {
    float: right;
    cursor: pointer;
    font-size: 18px;
}

#chat-body {
    padding: 10px;
}

#chat-log {
    max-height: 200px;
    overflow-y: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.chat-user, .chat-bot {
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
}

.chat-user {
    background: #d1e7ff;
    text-align: right;
}

.chat-bot {
    background: #f1f1f1;
    text-align: left;
}

#chat-questions {
    margin-top: 10px;
}

#chat-questions p {
    font-size: 14px;
    font-weight: bold;
}

.chat-question {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 8px;
    border: none;
    background: #0073e6;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.chat-question:hover {
    background: #005bb5;
}

#chat-input {
    width: calc(100% - 20px);
    padding: 5px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#chat-send {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#chat-send:hover {
    background: #218838;
}
