.angie-fcb-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999999; /* Increased z-index to ensure visibility */
}

.angie-fcb-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    font-family: sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.angie-fcb-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
}

.angie-fcb-call {
    background-color: #25D366; /* WhatsApp/Phone green */
}

.angie-fcb-text {
    background-color: #0084FF; /* iMessage/Text blue */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .angie-fcb-wrapper {
        bottom: 20px; /* Adjust bottom distance */
        right: 0;
        left: 0;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        padding: 0 20px; /* Padding on edges */
        box-sizing: border-box;
    }
    
    .angie-fcb-button {
        flex: 1;
        max-width: 160px; /* Adjusted max-width */
        padding: 12px 10px;
        font-size: 14px;
        justify-content: center;
        margin: 0 5px; /* Spacing between buttons */
    }
    
    .angie-fcb-button span {
        display: inline-block;
    }
}