 /* Widget Container */
        .embla-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        /* Chat Bubble */
        .embla-chat-bubble {
            width: 60px;
            height: 60px;
            background: #227c3e;
            border-radius: 50%; 
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .embla-chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        }

        .embla-chat-bubble::before {
            content: "Hitta din närmsta återförsäljare här!";
            position: absolute;
            bottom: 70px;
            right: 0;
            background: #227c3e;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 1;
            visibility: visible;
            z-index: 1001;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .embla-chat-bubble::after {
            content: "";
            position: absolute;
            bottom: 64px;
            right: 20px;
            border: 6px solid transparent;
            border-top-color: #2c3e50;
            opacity: 1;
            visibility: visible;
            z-index: 1001;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .embla-widget.open .embla-chat-bubble::before,
        .embla-widget.open .embla-chat-bubble::after {
            opacity: 0;
            visibility: hidden;
        }

        .embla-chat-bubble .icon {
            color: white;
            font-size: 24px;
        }

        /* Chat Window */
        .embla-chat-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .embla-chat-window.open {
            display: flex;
        }

        /* Chat Header */
        .embla-chat-header {
            background: #227c3e;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .embla-chat-header h3 {
            margin: 0;
            font-size: 16px;
        }

        .embla-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Chat Messages */
        .embla-chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #fafafa;
        }

        .embla-message {
            margin: 8px 0;
            padding: 10px 12px;
            border-radius: 12px;
            max-width: 85%;
            font-size: 14px;
            line-height: 1.4;
        }

        .embla-user-message {
            background: #227c3e;
            color: white;
            margin-left: auto;
        }

        .embla-bot-message {
            background: white;
            border: 1px solid #e1e5e9;
        }


        /* Quick Buttons */
        .embla-quick-buttons {
            padding: 10px 15px;
            background: #f8f9fa;
            border-top: 1px solid #e1e5e9;
        }

        .embla-quick-btn {
            margin: 3px;
            padding: 6px 12px;
            background: #227c3e;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 12px;
            transition: background 0.2s;
        }

        .embla-quick-btn:hover {
            background: #dee2e6;
        }

        /* Chat Input */
        .embla-chat-input {
            display: flex;
            padding: 15px;
            background: white;
            border-top: 1px solid #e1e5e9;
        }

        .embla-chat-input input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
            font-size: 14px;
        }

        .embla-chat-input button {
            margin-left: 8px;
            padding: 8px 16px;
            background: #227c3e;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .embla-widget {
                bottom: 10px;
                right: 10px;
            }
            
            .embla-chat-window {
                width: calc(100vw - 20px);
                height: calc(100vh - 100px);
                bottom: 80px;
                right: 10px;
            }
        }
.embla-user-message {
    background: #006b26;
    color: white;
    margin-left: auto;
}
input#emblaInput {
    color: black;
}
.embla-bot-message {
    background: #227c3e;
    border: 1px solid #e1e5e9;
}
