
:root{--primary-color:rgb(206, 64, 25);}
/* chat section */
/* Floating Chat Button */
.chat-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Change from left to right */
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
}


.chat-floating-button:hover {
    transform: scale(1.1);
    background: #00796b;
}

/* Chat Section */
.chat-section {
    position: fixed;
    bottom: 100px;
    right: 20px;
    /* Change from left to right */
    width: 350px;
    max-height: 500px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    display: none;
    flex-direction: column;
    z-index: 1000;
    outline: none !important;
    box-shadow: none !important;
}

#closeChat {
    filter: invert(1);
    /* Inverts the color to white */
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.chat-input {
    padding: 10px;
    display: flex;
    gap: 8px;
}

.chat-input input {
    flex: 1;
}

.chat-message {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 6px;
}

.chat-message.user {
    background: #d1e7dd;
    align-self: flex-end;
}

.chat-message.bot {
    background: #e2e3e5;
    align-self: flex-start;
}

#sendBtn {
    border: none;
    background: transparent;
    color: var(--primary-color);

    font-size: 25px;
    /* Make the icon bigger */
    cursor: pointer;
    transition: transform 0.3s ease;

}
