#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

#chatbot-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

#chatbot-toggle:hover {
    background-color: #45a049;
}

#chatbot-window {
    display: none;
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 400px;
    height: 600px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-direction: column;
    overflow: hidden;
}

#chatbot-header {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-close {
    cursor: pointer;
    font-size: 24px;
}

#chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
}

.chatbot-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.bot-message {
    background-color: #e0e0e0;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: #4CAF50;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

#chatbot-input-area {
    display: flex;
    padding: 10px;
    background-color: white;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

#chatbot-send {
    margin-left: 8px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#chatbot-send:hover {
    background-color: #45a049;
}

.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
}

.chatbot-suggestion-btn {
    background-color: white;
    color: #4CAF50;
    border: 1px solid #4CAF50;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.chatbot-suggestion-btn:hover {
    background-color: #4CAF50;
    color: white;
}