#roofedge-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#roofedge-chatbot-button {
    background-color: #c8102e;  /* Changed to red - matches Roof Edge branding */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-weight: bold;  /* Optional: makes text pop more */
}

#roofedge-chatbot-button:hover {
    background-color: #a00d24;  /* Darker red on hover for better UX */
}

#roofedge-chatbot-window {
    background-color: white;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

#roofedge-chatbot-header {
    background-color: #c8102e;  /* Match header to button for consistency */
    color: white;
    padding: 10px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#roofedge-chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

#roofedge-chatbot-input {
    padding: 10px;
    border: none;
    border-top: 1px solid #ddd;
}

#roofedge-chatbot-send {
    background-color: #c8102e;  /* Send button also red */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#roofedge-chatbot-send:hover {
    background-color: #a00d24;
}