#chatbot-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

#chatbot-wrapper {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    z-index: 10000;
}

.chatbot-hidden {
    display: none;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    float: right;
    cursor: pointer;
}

.chat-container {
    width: 350px;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.chat-header {
    background: #007bff;
    color: white;
    padding: 10px;
    font-size: 18px;
    text-align: center;
}

.chat-window {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.message {
    max-width: 80%;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    font-size: 14px;
    word-wrap: break-word;
}

.user {
    background: #007bff;
    color: white;
    align-self: flex-end;
}

.bot {
    background: #e0e0e0;
    color: black;
    align-self: flex-start;
}

.chat-input-area {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-top: 1px solid #ccc;
}

.chat-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.send-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 10px;
    margin-left: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.voice-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 10px;
    margin-right: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.send-button:hover {
    background: #0056b3;
}

.voice-button:hover {
    background: #218838;
}

.reset-button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    margin-left: 10px;
}

.reset-button:hover {
    background-color: #d32f2f;
}

