
/* Call Circle Widget Styles */
#call-circle-widget {
    position: fixed;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Position variations */
.call-circle-widget-bottom-right {
    bottom: 30px;
    right: 30px;
}

.call-circle-widget-bottom-left {
    bottom: 30px;
    left: 30px;
}

.call-circle-widget-top-right {
    top: 30px;
    right: 30px;
}

.call-circle-widget-top-left {
    top: 30px;
    left: 30px;
}

.call-circle-widget-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--widget-color, #9b87f5);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.call-circle-widget-button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.05);
    width: auto;
    padding-right: 20px;
    border-radius: 30px;
}

.call-circle-widget-icon {
    min-width: 24px;
    height: 24px;
    margin: 0 auto;
    transition: margin 0.3s ease;
}

.call-circle-widget-button:hover .call-circle-widget-icon {
    margin: 0 8px 0 18px;
}

.call-circle-widget-text {
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-left: 0;
}

.call-circle-widget-button:hover .call-circle-widget-text {
    opacity: 1;
    max-width: 200px;
    margin-left: 4px;
}

/* Add pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 1s ease;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    #call-circle-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .call-circle-widget-button {
        width: 50px;
        height: 50px;
    }
}
