/* Minimal Floating Chat Button CSS - Extracted from _Layout.cshtml */

.modern-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C49A6C 0%, #D1A76F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(196, 154, 108, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    animation: buttonFloat 3s ease-in-out infinite;
}

.modern-chat-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 154, 108, 0.6);
}

.modern-chat-button i {
    color: white;
    font-size: 28px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(196, 154, 108, 0.8);
    border-radius: 50%;
    background: transparent;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes buttonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        opacity: 0.8;
        border-color: rgba(196, 154, 108, 0.8);
    }
    100% { 
        transform: scale(1.5); 
        opacity: 0;
        border-color: rgba(196, 154, 108, 0);
    }
}










