
        /* Status Indicator Styles */
        .status-indicator {
            position: absolute;
            bottom: 21%;
            right: 9%;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #10b981; /* Green for available */
            border: 3px solid #ffffff;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
            cursor: pointer;
            animation: statusPulse 2s ease-in-out infinite;
            z-index: 10;
        }

        .status-indicator.busy {
            background: #f59e0b; /* Yellow for busy */
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
        }

        .status-indicator.offline {
            background: #ef4444; /* Red for offline */
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
        }

        /* Tooltip Styles */
        .status-tooltip {
            position: absolute;
            bottom: 35px;
            right: -80px;
            background: rgba(15, 23, 42, 0.95);
            color: #ffffff;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(6, 182, 212, 0.3);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 20;
        }

        .status-tooltip::before {
            content: '';
            position: absolute;
            bottom: -6px;
            right: 85px;
            width: 12px;
            height: 12px;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
        }

        .status-indicator:hover .status-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .status-text {
            display: block;
            margin-bottom: 4px;
        }

        .status-details {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        .status-company {
            color: #06b6d4;
            font-weight: 600;
        }

        @keyframes statusPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
            }
        }

        @media (max-width: 768px) {
            .status-tooltip {
                right: -60px;
            }

            .status-tooltip::before {
                right: 65px;
            }
        }
  
