/* Stambaugh Designs Chat Widget Branding */
.n8n-chat-widget {
    font-family: 'Roboto', sans-serif;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.n8n-chat-header {
    background: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
}

.n8n-chat-header::before {
    content: "💬 Chat with Stambaugh Designs";
    font-weight: bold;
}

.n8n-chat-message.user {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.n8n-chat-message.bot {
    background: #ecf0f1;
    color: #2c3e50;
    border-radius: 18px 18px 18px 4px;
}

.n8n-chat-input {
    border: 2px solid #3498db;
    border-radius: 25px;
    padding: 12px 20px;
}

.n8n-chat-send-button {
    background: #3498db;
    border-radius: 50%;
    border: none;
    color: white;
}