/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #chatbotContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#root {
    display: none; /* Initially hidden */
    width: 350px;
    height: 700px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background: white;
    position: relative;
    overflow: hidden;
}

#chatbotToggle {
    width: 190px;
    height: 60px;
    border-radius: 10px;
    border: none;
    background-color: #161616;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.chat-toggle-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 15px;
    margin-right: 15px;
    z-index: 10000;
}

#root.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
