/* Hide Retell default floating action button */
/* Absolute fallback */
div[id^="retell-fab"],
#retell-fab,
.retell-fab {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Custom floating launcher */
#custom-retell-launcher {
    background-color: #000;
    position: fixed;
    bottom: 86px;
    right: 18px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

#custom-retell-launcher:hover {
    transform: scale(1.05);
}

#custom-retell-launcher img {
    width: 32px;
    height: 32px;
}

/* Retell chat window positioning */
.retell-chat-window {
    bottom: 135px !important; /* default for desktop */
}

/* Mobile screens */
@media (max-width: 600px) {
    .retell-chat-window {
        bottom: 160px !important;
    }
}