#ft-chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: white;
    color: #1a5f3f;
    border: 1px solid #008000;
    border-radius: 50px;
    padding: 8px 16px 8px 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 95, 63, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
#ft-chat-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 95, 63, 0.25);
    background: #f1f8f4;
}
#ft-chat-fab:active {
    transform: translateY(0);
}
#ft-chat-fab::before {
    content: "💬";
    font-size: 20px;
    filter: hue-rotate(90deg) saturate(1.5);
}

#ft-widget-card {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 400px;
    height: 600px;
    max-height: calc(100vh - 100px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: none;
    overflow: hidden;
}

#ft-support-widget-root {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 12px;
    margin: 0;
    padding: 0;
}

#ft-widget-card.visible {
    display: block;
    animation: chat_slideIn 0.3s ease-out;
}

@keyframes chat_slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #ft-widget-card {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        right: 20px;
        left: 20px;
    }
}
