#quick-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s ease;
}

#quick-call-button:hover {
    transform: scale(1.1);
}

#quick-call-panel {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    width: 220px;
    z-index: 9998;
}

#quick-call-panel.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


.call-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
    color: inherit;
}

.call-item:hover {
    background: #e9ecef;
}

.call-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.call-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}