/* TDF – Bouton flottant alertes, aligné avec .floating-buttons */

.tdf-alert-floating {
    position: fixed;
    top: 16px;
    left: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    background: #1a7a2e;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    padding: 5px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform .2s ease, background .2s ease;
}

.tdf-alert-floating:hover {
    transform: scale(1.05);
    background: #145c23;
    color: #fff !important;
}

.tdf-alert-floating-label {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.tdf-alert-floating-label small {
    font-weight: 400;
    font-size: 10px;
    opacity: .85;
}

/* Mobile : même hauteur que les boutons existants (30px) */
@media (max-width: 768px) {
    .tdf-alert-floating {
        top: 12px;
        left: 8px;
        padding: 4px 8px;
        font-size: 14px;
    }
    .tdf-alert-floating-label {
        font-size: 10px;
    }
    .tdf-alert-floating-label small {
        font-size: 9px;
    }
}
