/* ==========================================================================
   LeadConnect Pro - Frontend Floating Buttons CSS (Super Specific Fix)
   ========================================================================== */

/* 1. Main Container Setup */
.lcp-container {
    position: fixed;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999999;
}

.lcp-left {
    left: 20px;
}

.lcp-right {
    right: 20px;
}

/* 2. Button Wrapper (Highly specific to override ANY theme CSS) */
body .lcp-container .lcp-btn {
    width: var(--lcp-size, 55px);
    height: var(--lcp-size, 55px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none;
    cursor: pointer;
    outline: none !important;
    transition: transform 0.2s ease;
}

/* Hover Animation */
body .lcp-container .lcp-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* 3. Uploaded Icon/Image settings */
body .lcp-container .lcp-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    display: block !important;
}

/* 4. Platform Specific Resets (Safety catch) */
body .lcp-container .lcp-whatsapp, 
body .lcp-container .lcp-phone, 
body .lcp-container .lcp-telegram, 
body .lcp-container .lcp-arattai {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}