/* Semerenko Chatbot Styles v1.9 - Google/Material Inspired Theme */
/* Overall Popup Widget Container - Force Positioning */
#my-chat-popup-target {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 10000 !important;
    /* High z-index */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    height: auto;
}

/* Toggle Button - Material FAB style */
#my-chat-popup-target #semerenko-chat-toggle-button {
    background-color: #006b3c;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #006b3c, 0 0 20px #006b3c;
    animation: pulseGlow 2s infinite;
    transition: transform 0.2s ease, box-shadow 0.28s cubic-bezier(.4, 0, .2, 1);
    z-index: 10001;
    overflow: hidden;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px #006b3c, 0 0 20px #006b3c;
    }

    50% {
        box-shadow: 0 0 20px #006b3c, 0 0 30px #006b3c;
    }

    100% {
        box-shadow: 0 0 10px #006b3c, 0 0 20px #006b3c;
    }
}

#my-chat-popup-target #semerenko-chat-toggle-button:hover {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    transform: scale(1.05);
}

#my-chat-popup-target #semerenko-chat-toggle-button svg {
    width: 32px;
    height: 32px;
    fill: #ffffff !important;
    opacity: 1 !important;
}

/* Chat Container (Initially Hidden) - Material style */
#my-chat-popup-target .chat-container {
    width: 360px;
    max-width: 90vw;
    height: 65vh;
    min-height: 300px;
    max-height: 540px;
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    overflow: hidden;
    color: #202124;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 2px 6px 2px rgba(60, 64, 67, .15);
    border-radius: 24px;
    margin-bottom: 16px;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-size: 14px;
}

#my-chat-popup-target.chat-open .chat-container {
    display: flex;
}

/* --- Base Element Styles --- */
#my-chat-popup-target .chat-container * {
    box-sizing: border-box;
    font-family: inherit;
}

/* Header */
#my-chat-popup-target .chat-header {
    padding: 12px 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #dadce0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

#my-chat-popup-target .user-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    /* Pushes buttons right */
}

#my-chat-popup-target .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: none;
    background-color: #e8eaed;
}

#my-chat-popup-target .user-name {
    font-weight: 500;
    font-size: 1rem;
    color: #3c4043;
    line-height: 1.2;
}

#my-chat-popup-target .status-container {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

#my-chat-popup-target .online-indicator {
    width: 8px;
    height: 8px;
    background-color: #1e8e3e;
    border-radius: 50%;
    margin-right: 4px;
    border: none;
}

#my-chat-popup-target .status-text {
    font-size: 0.75rem;
    color: #5f6368;
    line-height: 1;
}

/* Header Buttons */
#my-chat-popup-target #semerchat-clear-button {
    background: none;
    border: none;
    color: #5f6368;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 8px;
    margin: -8px 4px -8px 0;
    transition: color 0.2s, background-color 0.2s;
    order: 2;
    border-radius: 4px;
}

#my-chat-popup-target #semerchat-clear-button:hover {
    color: #1a73e8;
    background-color: rgba(26, 115, 232, .08);
    text-decoration: none;
}

#my-chat-popup-target .chat-header .close-chat-btn {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #5f6368;
    padding: 8px;
    margin: -8px -8px -8px 0px;
    order: 3;
}

#my-chat-popup-target .chat-header .close-chat-btn:hover {
    background-color: rgba(60, 64, 67, .08);
    border-radius: 50%;
}

/* Messages Area */
#my-chat-popup-target .chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 8px 16px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

#my-chat-popup-target .message-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

/* Default Message Bubble Styles (Including RTL) */
#my-chat-popup-target .message {
    max-width: 90%;
    /* Your desired width */
    padding: 8px 12px;
    border-radius: 16px;
    /* Your desired radius */
    line-height: 1.4;
    word-wrap: break-word;
    position: relative;
    box-shadow: none;
    margin-bottom: 2px;
    font-size: 0.875rem;
    /* 14px */
    opacity: 1;
    transform: none;
    transition: none;
    border: 1px solid transparent;
}

#my-chat-popup-target .message a {
    color: #1a73e8;
    text-decoration: none;
    border-bottom: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#my-chat-popup-target .message a:hover {
    text-decoration: underline;
}

#my-chat-popup-target .message-content {
    display: block;
    white-space: pre-wrap;
}

/* NEW: Inline code styling (for `code` in assistant messages) */
#my-chat-popup-target .message-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background-color: rgba(60, 64, 67, .08);
    padding: 2px 6px;
    border-radius: 6px;
}

#my-chat-popup-target .timestamp {
    display: none;
}

/* Received Bubble */
#my-chat-popup-target .message.received {
    background-color: #f1f3f4;
    color: #202124;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border-color: #f1f3f4;
}

/* Sent Bubble */
#my-chat-popup-target .message.sent {
    background-color: #d2e3fc;
    color: #0b57d0;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border-color: #d2e3fc;
}

#my-chat-popup-target .message.sent a {
    color: #0b57d0;
    font-weight: 500;
}

/* Typing Indicator */
@keyframes whatsapp_typing_bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

#semerchat-typing-indicator {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 10px !important;
    border-radius: 16px !important;
    min-height: 30px;
    gap: 4px;
    background-color: #f1f3f4;
}

#semerchat-typing-indicator span {
    height: 5px;
    width: 5px;
    margin: 0;
    background-color: #9aa0a6;
    border-radius: 50%;
    display: inline-block !important;
    vertical-align: middle !important;
    animation-name: whatsapp_typing_bounce;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#semerchat-typing-indicator span:nth-of-type(1) {
    animation-delay: -0.32s;
}

#semerchat-typing-indicator span:nth-of-type(2) {
    animation-delay: -0.16s;
}

#semerchat-typing-indicator span:nth-of-type(3) {
    animation-delay: 0s;
}

/* Error Message */
#my-chat-popup-target .message.error {
    background-color: #fce8e6;
    color: #a50e0e;
    align-self: center;
    max-width: 90%;
    text-align: center;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 0.875rem;
    box-shadow: none;
    border: 1px solid #fbdadb;
    opacity: 1;
    transform: none;
}

/* Input Area */
#my-chat-popup-target .chat-input-area {
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 16px;
    border-top: 1px solid #dadce0;
    background-color: #ffffff;
    flex-shrink: 0;
}

#my-chat-popup-target .chat-input-area input[type='text'] {
    flex-grow: 1;
    border: none;
    border-radius: 22px;
    padding: 10px 16px;
    font-size: 0.875rem;
    outline: none;
    background-color: #f1f3f4;
    color: #202124;
    transition: background-color 0.2s ease;
    margin-right: 8px;
    line-height: 1.4;
}

#my-chat-popup-target .chat-input-area input[type='text']:disabled {
    background-color: #e8eaed;
    cursor: not-allowed;
}

#my-chat-popup-target .chat-input-area input[type='text']:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 1px #dadce0;
}

/* Send Button */
#my-chat-popup-target .send-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
    color: #1a73e8;
}

#my-chat-popup-target .send-btn svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

#my-chat-popup-target .send-btn:disabled {
    color: #9aa0a6;
    cursor: not-allowed;
    background-color: transparent !important;
}

#my-chat-popup-target .send-btn:hover:not(:disabled) {
    background-color: rgba(26, 115, 232, .08);
}

#my-chat-popup-target .send-btn:active:not(:disabled) {
    background-color: rgba(26, 115, 232, .16);
}

/* Scrollbar styles */
#my-chat-popup-target .chat-messages::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

#my-chat-popup-target .chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

#my-chat-popup-target .chat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 10px;
}

#my-chat-popup-target .chat-messages {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .2) transparent;
}

/* --- Mobile Styles Adjustments --- */
@media (max-width: 599px) {

    /* Use a slightly wider breakpoint if needed */
    /* --- Popup Container (Full Screen When Open) --- */
    #my-chat-popup-target.chat-open {
        position: fixed !important;
        /* inset: 0 takes care of top, right, bottom, left */
        inset: 0 !important;
        width: 100vw !important;
        /* Use viewport width */
        height: 100dvh !important;
        /* Use viewport height */
        max-width: none !important;
        max-height: none !important;
        /* Prevent background scroll bleed */
        overflow: hidden !important;
        /* Ensure it's above other content */
        z-index: 10000 !important;
        /* Remove potential borders/margins causing overflow */
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: #ffffff;
    }

    /* --- Chat Container (Layout Structure) --- */
    #my-chat-popup-target.chat-open .chat-container {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        /* Edge-to-edge */
        border: none;
        margin: 0;
        /* Remove default margins */
        background-color: #ffffff;
        /* Chat background color */
        display: flex;
        /* CRUCIAL: Use Flexbox for layout */
        flex-direction: column;
        /* Stack header, messages, input vertically */
        /* Prevent content shifts due to scrollbars (optional) */
        overflow: hidden;
    }

    /* --- Chat Header --- */
    #my-chat-popup-target .chat-header {
        flex-shrink: 0;
        /* Prevent header from shrinking */
        display: flex;
        align-items: center;
        padding: 8px 12px 8px 16px;
        /* Small(T/B) Medium(R) Large(L) Spacing */
        /* Account for notches/status bars */
        padding-top: calc(8px + env(safe-area-inset-top));
        border-bottom: 1px solid #dadce0;
        /* Chat border color */
        background-color: #ffffff;
        /* Ensure background */
        z-index: 1;
        /* Keep above messages */
    }

    #my-chat-popup-target .chat-header .avatar {
        width: 36px;
        height: 36px;
        margin-right: 12px;
        /* Medium Spacing */
    }

    #my-chat-popup-target .chat-header .user-name {
        font-size: 1rem;
        /* Slightly larger, more readable */
        font-weight: 500;
        margin-right: auto;
        /* Push buttons to the right */
        color: #202124;
        /* Chat text color */
    }

    #my-chat-popup-target .chat-header #semerchat-clear-button {
        padding: 6px;
        font-size: 0.75rem;
        background: none;
        border: none;
        color: #5f6368;
        cursor: pointer;
        margin-left: 8px;
    }

    /* --- FIX: Bigger Close Button on Mobile --- */
    #my-chat-popup-target .chat-header .close-chat-btn {
        padding: 12px !important;
        /* Larger touch area */
        font-size: 0.75rem;
        background: none;
        border: none;
        color: #5f6368;
        cursor: pointer;
        margin-left: 8px;
        margin-right: -8px;
        /* Pull back to edge */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #my-chat-popup-target .chat-header .close-chat-btn svg {
        width: 36px !important;
        /* Visually Larger X */
        height: 36px !important;
        /* Visually Larger X */
        fill: #5f6368;
    }

    /* --- Chat Messages Area --- */
    #my-chat-popup-target .chat-messages {
        flex-grow: 1;
        /* CRUCIAL: Allows this area to fill available space */
        overflow-y: auto;
        /* Enable vertical scrolling for messages */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        padding: 12px;
        /* Medium Spacing */
        scroll-behavior: smooth;
        /* Animate scrolling */
        padding-bottom: calc(75px + env(safe-area-inset-bottom));
        /* Ensure text doesn't hide behind input */
    }

    /* --- Chat Input Area --- */
    #my-chat-popup-target .chat-input-area {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 8px 12px;
        /* Small(T) Medium(R/L) Spacing */
        /* Account for home indicators/keyboard */
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        /* Adjusted bottom padding to Medium + safe area */
        background-color: #ffffff;
        /* Ensure background */
        border-top: 1px solid #dadce0;
        /* Chat border color */
        gap: 8px;
        /* Small Space between input and button */
        z-index: 2;
    }

    #my-chat-popup-target .chat-input-area input[type='text'] {
        flex-grow: 1;
        /* Allow input to take up available space */
        min-width: 0;
        /* Prevent input from overflowing container */
        padding: 10px 16px;
        /* Comfortable padding */
        border-radius: 18px;
        /* Chat border radius */
        border: 1px solid #dadce0;
        /* Chat border color */
        font-size: 0.95rem;
        line-height: 1.4;
        /* Prevent text clipping */
    }

    #my-chat-popup-target .chat-input-area input[type='text']:focus {
        border-color: #006b3c;
        /* Chat primary color */
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 107, 60, 0.2);
        /* Subtle focus ring */
    }

    #my-chat-popup-target .send-btn {
        flex-shrink: 0;
        /* Prevent button from shrinking */
        padding: 8px;
        /* Slightly larger tap target */
        background-color: #006b3c;
        /* Chat primary color */
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
        color: white;
    }

    #my-chat-popup-target .send-btn:hover,
    #my-chat-popup-target .send-btn:focus {
        background-color: #005f35;
        /* Slightly darker green */
    }

    #my-chat-popup-target .send-btn svg {
        width: 24px;
        /* Slightly larger icon */
        height: 24px;
        fill: #ffffff;
        /* FAB text color (white) */
    }

    /* --- Floating Action Button (Toggle) --- */
    /* Hide FAB ONLY when chat is open on mobile */
    #my-chat-popup-target.chat-open #semerenko-chat-toggle-button {
        display: none !important;
    }

    /* Style/Position FAB when chat is CLOSED on mobile */
    #my-chat-popup-target #semerenko-chat-toggle-button {
        position: fixed;
        bottom: 16px;
        /* Large Spacing */
        right: 16px;
        /* Large Spacing */
        /* Add safe area padding */
        bottom: calc(16px + env(safe-area-inset-bottom));
        right: calc(16px + env(safe-area-inset-right));
        width: 60px;
        /* FAB size */
        height: 60px;
        /* FAB size */
        font-size: 28px;
        /* FAB icon size */
        background-color: #006b3c;
        /* Chat primary color */
        color: #ffffff;
        /* White text on green */
        border: none;
        border-radius: 50%;
        display: flex !important;
        /* Keep important if needed */
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 rgba(0, 107, 60, 0.0);
        /* Adjusted shadow, remove inner for pulse */
        animation: pulseGlow 2.5s infinite ease-out;
        /* Slightly adjusted animation */
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        z-index: 10001;
        /* Below open chat, above content */
        cursor: pointer;
        overflow: hidden;
        /* Prevent inner content spill */
    }

    #my-chat-popup-target #semerenko-chat-toggle-button:hover {
        transform: scale(1.05);
        /* Slight scale on hover */
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    }

    /* Refined Pulse Animation */
    @keyframes pulseGlow {
        0% {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 0px rgba(0, 107, 60, 0.5);
        }

        70% {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(0, 107, 60, 0);
        }

        100% {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 0px rgba(0, 107, 60, 0);
        }
    }
}

/* End @media (max-width: 599px) */
/* --- Welcome Bubble Styles --- */
#semerenko-welcome-bubble.chat-welcome-bubble {
    position: absolute;
    /* Relative to #my-chat-popup-target container */
    /* Position above FAB: FAB height (60px) + Medium Spacing (12px) + Large Spacing (16px from FAB edge) */
    bottom: calc(60px + 12px + 16px);
    right: 16px;
    /* Large Spacing */
    /* Add safe area padding */
    bottom: calc(60px + 12px + 16px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
    background-color: #ffffff;
    /* Chat background color */
    color: #202124;
    /* Chat text color */
    border: 1px solid #dadce0;
    /* Chat border color */
    border-radius: 18px;
    /* Chat border radius */
    padding: 10px 14px;
    display: flex;
    /* Use flex for alignment */
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    z-index: 10002;
    /* Above FAB */
    animation: fadeIn 0.4s ease forwards;
    /* Ensure final state persists */
    max-width: calc(100vw - 2 * 16px - env(safe-area-inset-left) - env(safe-area-inset-right));
    /* Prevent overflow: 100vw - L/R Large Spacing - L/R safe area */
    cursor: pointer;
    /* Suggests it's clickable */
}

#semerenko-welcome-bubble .emoji {
    margin-right: 6px;
    font-size: 1.2rem;
}

#semerenko-welcome-bubble .text {
    margin-right: 6px;
    font-weight: 500;
    white-space: nowrap;
    /* Keep nowrap for original design */
    overflow: hidden;
    /* Prevent text overflow */
    text-overflow: ellipsis;
    /* Add ellipsis if text too long */
    flex-shrink: 1;
    /* Allow text to shrink if needed */
}

#semerenko-welcome-bubble .status-dot {
    width: 8px;
    height: 8px;
    background-color: #1e8e3e;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    /* Prevent dot from shrinking */
}

/* 1. Container Styles */
#semerenko-welcome-bubble .close-welcome {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 8px !important; /* Larger touch area */
    margin-left: auto;
    flex-shrink: 0;
    
    /* Force Layout */
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px !important;
    height: 32px !important;
    z-index: 10005;
}

/* 2. Force the Icon/Text Color (for Font Icons or Text) */
#semerenko-welcome-bubble .close-welcome {
    color: #5f6368 !important; 
    font-size: 20px !important;
    line-height: 1 !important;
}

/* 3. CRITICAL: Force SVG Color (If it's an SVG) */
#semerenko-welcome-bubble .close-welcome svg {
    width: 14px !important;
    height: 14px !important;
    fill: #5f6368 !important; /* Overrides global white */
    stroke: #5f6368 !important; /* Overrides global white stroke */
    display: block !important;
    opacity: 1 !important;
}

/* 4. CRITICAL: Force Path Color (Deepest Level) */
#semerenko-welcome-bubble .close-welcome svg path {
    fill: #5f6368 !important;
    stroke: #5f6368 !important;
}

/* 5. Hover State - Turn Red */
#semerenko-welcome-bubble .close-welcome:hover,
#semerenko-welcome-bubble .close-welcome:hover svg,
#semerenko-welcome-bubble .close-welcome:hover svg path {
    color: #d93025 !important;
    fill: #d93025 !important;
    stroke: #d93025 !important;
    background-color: rgba(0,0,0,0.05); /* Light circle on hover */
    border-radius: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Block everything until ready */
body.chat-ui-init #semerenko-chat-toggle-button,
body.chat-ui-init #semerenko-welcome-bubble {
    /* display: none !important; */
    opacity: 0 !important;
}

/* Ready state with transition */
#semerenko-chat-toggle-button,
#semerenko-welcome-bubble {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: opacity 0.4s ease;
}

#semerenko-chat-toggle-button.visible {
    display: flex;
    opacity: 1;
}

#semerenko-welcome-bubble.visible {
    display: flex;
    opacity: 1;
}

/* === Restore solid white chat icon === */
#my-chat-popup-target #semerenko-chat-toggle-button svg {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Make the visible shapes solid white, with no outline */
#my-chat-popup-target #semerenko-chat-toggle-button svg {
    fill: #fff !important;
    stroke: none !important;
}

/* Keep any background rect transparent and without stroke */
#my-chat-popup-target #semerenko-chat-toggle-button svg rect {
    fill: transparent !important;
    stroke: none !important;
}

/* Keep it visible in focus/active/open states */
#my-chat-popup-target #semerenko-chat-toggle-button:active svg,
#my-chat-popup-target #semerenko-chat-toggle-button:focus svg,
#my-chat-popup-target.chat-open #semerenko-chat-toggle-button svg {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}
/* Fix for Invisible Send Button on Mobile */
@media (max-width: 599px) {
    #my-chat-popup-target .send-btn:disabled {
        background-color: #f1f3f4 !important; /* Light gray background circle */
        cursor: not-allowed;
    }

    #my-chat-popup-target .send-btn:disabled svg {
        fill: #9aa0a6 !important; /* Gray icon instead of white */
    }
}
