/* Floating Button Styles */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.floating-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 9998;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    visibility: hidden;
}

.floating-menu.show {
    transform: scale(1);
    visibility: visible;
}

.floating-menu-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.floating-menu-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.floating-menu-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 1.2rem;
}

.floating-menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 10px;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
}

.floating-menu-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.floating-menu-item i {
    margin-right: 12px;
    width: 20px;
    color: #7e22ce;
}

.floating-menu-item-title {
    font-weight: 500;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(126, 34, 206, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(126, 34, 206, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(126, 34, 206, 0);
    }
}