/* Fix pour le bouton FAB des conversations */

/* Toujours afficher le FAB sur la section conversations */
#mes-conversations .fab-new-quote,
.conversations-list .fab-new-quote {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Cacher seulement quand le chat est ouvert sur mobile */
@media (max-width: 768px) {
    .conversations-list.chat-open .fab-new-quote {
        display: none !important;
    }
}

/* Style du FAB - Couleur violette comme les autres boutons devis */
.fab-new-quote {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    z-index: 100;
    border: none;
    transition: all 0.3s ease;
}

.fab-new-quote:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.fab-new-quote:active {
    transform: scale(0.95);
}

.fab-new-quote svg {
    width: 24px;
    height: 24px;
    stroke: white !important;
}

/* Alignement avec le style des autres boutons devis */
.b2bking_request_custom_quote_button,
.fab-new-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.b2bking_request_custom_quote_button:hover,
.fab-new-quote:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}
