 /* Agent Card */
        .agent-card {
            flex-shrink: 0;
            width: 280px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            background-color: white;
            padding: 6px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .agent-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .agent-card:hover .agent-name {
            color: #C41E3A;
        }

        .agent-header {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 7px;
        }

        .certified-badge {
            background-color: #00A550;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .agent-title {
            font-size: 13px;
            color: #00A550;
            font-weight: 600;
        }

        .agent-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 9px;
        }

        .agent-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ddd;
            overflow: hidden;
        }

        .agent-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .agent-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .agent-name {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            transition: color 0.3s ease;
        }

        .agent-rera {
            font-size: 11px;
            color: #666;
            font-weight: 500;
        }

        .agent-experience {
            font-size: 12px;
            color: #C41E3A;
            font-weight: 600;
        }

        .agent-info {
            margin-bottom: 7px;
        }

        .agent-operating {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
        }

        .agent-operating-link {
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s ease;
        }

        .agent-operating-link:hover {
            color: #C41E3A;
        }

        .working-areas-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .working-areas-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            background: #f5f5f5;
            border-radius: 10px;
            font-size: 14px;
            color: #333;
        }

        .working-areas-list li::before {
            content: "\2022";
            color: #C41E3A;
            font-size: 18px;
            font-weight: bold;
        }

        .popup-form.popup-working-areas {
            max-width: 400px;
        }

        .agent-stats {
            display: flex;
            gap: 14px;
            margin-bottom: 9px;
        }

        .agent-stat {
            font-size: 12px;
        }

        .agent-stat-label {
            color: #666;
        }

        .agent-stat-value {
            color: #333;
            font-weight: 600;
        }

        .agent-buttons {
            display: flex;
            gap: 8px;
            margin-top: auto;
            padding-top: 6px;
        }