/* Frontend styles */
.fcb-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fcb-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fcb-button .custom-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.fcb-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.fcb-button:hover .custom-icon {
    transform: scale(1.1);
}

/* Pulse Animation */
.pulse {
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .fcb-container {
        gap: 10px;
    }
    
    .fcb-button {
        width: 50px;
        height: 50px;
    }
    
    .fcb-button .custom-icon {
        width: 50px;
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .fcb-container {
        display: none !important;
    }
}