/**
 * Floating WA Button Styles
 */

.ols-crm-floating-button {
    position: fixed;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.ols-crm-floating-button:hover {
    transform: scale(1.1);
}

.ols-crm-button-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Positions */
.ols-crm-pos-bottom-right {
    bottom: 30px;
    right: 30px;
}

.ols-crm-pos-bottom-left {
    bottom: 30px;
    left: 30px;
}

/* Tooltip */
.ols-crm-button-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.ols-crm-floating-button:hover .ols-crm-button-tooltip {
    opacity: 1;
    visibility: visible;
}

.ols-crm-pos-bottom-left .ols-crm-button-tooltip {
    left: 70px;
    right: auto;
}
